Date: Fri, 26 Jul 2013 06:07:28 +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: r323685 - head/x11-wm/wmii Message-ID: <201307260607.r6Q67SDp003501@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bapt Date: Fri Jul 26 06:07:28 2013 New Revision: 323685 URL: http://svnweb.freebsd.org/changeset/ports/323685 Log: Fix build with linker that does not copy the dt_need from libraries it links with like recent binutils. Obtained from: DPorts Modified: head/x11-wm/wmii/Makefile Modified: head/x11-wm/wmii/Makefile ============================================================================== --- head/x11-wm/wmii/Makefile Fri Jul 26 06:02:30 2013 (r323684) +++ head/x11-wm/wmii/Makefile Fri Jul 26 06:07:28 2013 (r323685) @@ -18,8 +18,8 @@ CONFLICTS= wmii-3.9* USE_XORG= x11 xextproto xt xext MAKE_ARGS= PREFIX="${PREFIX}" INCLUDE="${LOCALBASE}/include" \ - INCX11="-I${LOCALBASE}/include" LIBX11="-L${LOCALBASE}/lib" \ - CC="${CC} -c" LD="${CC}" LIBIXP="-lixp" STATIC="" \ + INCX11="-I${LOCALBASE}/include" LIBX11="-L${LOCALBASE}/lib -lX11 -lixp" \ + CC="${CC} -c" LD="${CC}" LIBIXP="" STATIC="" \ MAN="${MANPREFIX}/man" MAN1= wmii.1 wmiiloop.1 wmiir.1
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307260607.r6Q67SDp003501>