diff options
author | bapt <bapt@FreeBSD.org> | 2013-07-26 15:06:30 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-07-26 15:06:30 +0800 |
commit | e80ef1fc474e04a3b1999f45fd39114572d34f44 (patch) | |
tree | b6f70b3bfeb94ad657c7d0ee77d0b746fb8b3abc /x11-wm | |
parent | 1da5efcd659bf2827e13c8384a1971f2dc0d6155 (diff) | |
download | freebsd-ports-gnome-e80ef1fc474e04a3b1999f45fd39114572d34f44.tar.gz freebsd-ports-gnome-e80ef1fc474e04a3b1999f45fd39114572d34f44.tar.zst freebsd-ports-gnome-e80ef1fc474e04a3b1999f45fd39114572d34f44.zip |
Fix build with linker that does not copy the dt_need from libraries it links
with like recent binutils.
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/lwm/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11-wm/lwm/Makefile b/x11-wm/lwm/Makefile index 4720c177c4d5..d092710062c6 100644 --- a/x11-wm/lwm/Makefile +++ b/x11-wm/lwm/Makefile @@ -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 |