diff options
author | bapt <bapt@FreeBSD.org> | 2013-07-26 07:06:30 +0000 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-07-26 07:06:30 +0000 |
commit | e80ef1fc474e04a3b1999f45fd39114572d34f44 (patch) | |
tree | b6f70b3bfeb94ad657c7d0ee77d0b746fb8b3abc | |
parent | 1da5efcd659bf2827e13c8384a1971f2dc0d6155 (diff) | |
download | FreeBSD-ports-e80ef1fc474e04a3b1999f45fd39114572d34f44.zip FreeBSD-ports-e80ef1fc474e04a3b1999f45fd39114572d34f44.tar.gz |
Fix build with linker that does not copy the dt_need from libraries it links
with like recent binutils.
-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 4720c17..d092710 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 |