diff options
author | novel <novel@FreeBSD.org> | 2009-08-20 00:24:49 +0800 |
---|---|---|
committer | novel <novel@FreeBSD.org> | 2009-08-20 00:24:49 +0800 |
commit | 9a29c0a8b0e376de7eca1a845ac127e6b1c1d156 (patch) | |
tree | c8b2ece6739c03484e75cb6d5614dac3b9ff92d6 /net-im | |
parent | d27dcb77a53ebdd1bac7c69f43b64c79dc1cf279 (diff) | |
download | freebsd-ports-gnome-9a29c0a8b0e376de7eca1a845ac127e6b1c1d156.tar.gz freebsd-ports-gnome-9a29c0a8b0e376de7eca1a845ac127e6b1c1d156.tar.zst freebsd-ports-gnome-9a29c0a8b0e376de7eca1a845ac127e6b1c1d156.zip |
Fix build with new gnutls by using pkg-config instead of deprecated
gnutls-config.
Reported by: QAT
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/gloox/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net-im/gloox/Makefile b/net-im/gloox/Makefile index a7947c1d8b9b..bbbb210b8ff2 100644 --- a/net-im/gloox/Makefile +++ b/net-im/gloox/Makefile @@ -25,6 +25,8 @@ CONFIGURE_ENV= CPPFLAGS="${CXXFLAGS} -I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" USE_LDCONFIG= yes +post-patch: + @${REINPLACE_CMD} -e 's|libgnutls-config|pkg-config gnutls|' ${WRKSRC}/configure post-install: @${FIND} ${PREFIX}/include/gloox ! -type d | \ ${SED} "s,${PREFIX}/,," >> ${TMPPLIST} |