Date: Fri, 26 Jul 2013 07:06:30 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r323701 - head/x11-wm/lwm Message-ID: <201307260706.r6Q76UPZ022705@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bapt Date: Fri Jul 26 07:06:30 2013 New Revision: 323701 URL: http://svnweb.freebsd.org/changeset/ports/323701 Log: Fix build with linker that does not copy the dt_need from libraries it links with like recent binutils. Modified: head/x11-wm/lwm/Makefile Modified: head/x11-wm/lwm/Makefile ============================================================================== --- head/x11-wm/lwm/Makefile Fri Jul 26 07:03:25 2013 (r323700) +++ head/x11-wm/lwm/Makefile Fri Jul 26 07:06:30 2013 (r323701) @@ -18,8 +18,8 @@ USE_XORG= sm x11 xext MAKEFILE= no_xmkmf_makefile MAKE_ARGS= LDFLAGS="${LDFLAGS}" -CFLAGS+= `pkg-config --cflags sm x11 xext` -DSHAPE -LDFLAGS+= `pkg-config --libs sm x11 xext` +CFLAGS+= `pkg-config --cflags sm x11 xext ice` -DSHAPE +LDFLAGS+= `pkg-config --libs sm x11 xext ice` MAN1= ${PORTNAME}.1 PORTDOCS= AUTHORS BUGS ChangeLog README TODO
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307260706.r6Q76UPZ022705>