diff options
author | marino <marino@FreeBSD.org> | 2014-06-01 17:10:37 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2014-06-01 17:10:37 +0800 |
commit | ee2a07964e967b3a2b8e3ec93434d509e9d6801a (patch) | |
tree | 7058aa5b68ab5b433e59e37d442f626d78da81fc | |
parent | 78de8e44a280798a40e12ef0a37c95ac95e69ff9 (diff) | |
download | freebsd-ports-gnome-ee2a07964e967b3a2b8e3ec93434d509e9d6801a.tar.gz freebsd-ports-gnome-ee2a07964e967b3a2b8e3ec93434d509e9d6801a.tar.zst freebsd-ports-gnome-ee2a07964e967b3a2b8e3ec93434d509e9d6801a.zip |
devel/gwenhywfar: Fix on F10, F11, and DF
The newer platforms need explicit linking to libintl.so
-rw-r--r-- | devel/gwenhywfar/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/gwenhywfar/Makefile b/devel/gwenhywfar/Makefile index 4bb1be81693d..d9d32a9779f9 100644 --- a/devel/gwenhywfar/Makefile +++ b/devel/gwenhywfar/Makefile @@ -22,6 +22,7 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-release="yes" \ --with-guis="${SLAVEPORT}" CPPFLAGS+= -DGCRYPT_NO_DEPRECATED -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib -lintl PLIST_SUB= GWEN_SHLIB_VER="${GWEN_SHLIB_VER}" USE_LDCONFIG= yes @@ -49,7 +50,6 @@ INSTALL_WRKSRC= ${WRKSRC}/gui/${SLAVEPORT} .if ${SLAVEPORT}=="fox16" LIB_DEPENDS+= libFOX-1.6.so:${PORTSDIR}/x11-toolkits/fox16 CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib .endif .if ${SLAVEPORT}=="gtk2" |