diff options
author | Tijl Coosemans <tijl@FreeBSD.org> | 2014-08-26 14:06:08 +0000 |
---|---|---|
committer | Tijl Coosemans <tijl@FreeBSD.org> | 2014-08-26 14:06:08 +0000 |
commit | 216b5a285fdcc1456a307fcc60f3507c20d613eb (patch) | |
tree | d0c8617b772b8f0a175d436d938b8d844590b41f /x11/bbrun/files/patch-Makefile | |
parent | net/openh323: conflicts with h323plus (diff) |
- Fix missing library problems when the linker enforces explicit linking
PR: 192062
Exp-run by: antoine
Approved by: portmgr (antoine)
Diffstat (limited to 'x11/bbrun/files/patch-Makefile')
-rw-r--r-- | x11/bbrun/files/patch-Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/x11/bbrun/files/patch-Makefile b/x11/bbrun/files/patch-Makefile index 7144020704a9..1605750fa0bd 100644 --- a/x11/bbrun/files/patch-Makefile +++ b/x11/bbrun/files/patch-Makefile @@ -5,9 +5,9 @@ -LIBDIR = -L/usr/lib -L/usr/X11R6/lib -LIBS = -lXpm `pkg-config --libs gtk+-2.0` -CFLAGS = `pkg-config --cflags gtk+-2.0` -+LIBDIR = -L${LOCALBASE}/lib -+LIBS = -lXpm `pkg-config --libs gtk+-2.0` ${LDFLAGS} -+CFLAGS += `pkg-config --cflags gtk+-2.0` ++LIBDIR = ++LIBS = ${LDFLAGS} `pkg-config --libs gtk+-2.0 x11 xext xpm` ++CFLAGS += `pkg-config --cflags gtk+-2.0 x11 xext xpm` OBJS = bbrun.o \ ../wmgeneral/wmgeneral.o \ |