diff options
author | tijl <tijl@FreeBSD.org> | 2015-01-24 02:54:01 +0800 |
---|---|---|
committer | tijl <tijl@FreeBSD.org> | 2015-01-24 02:54:01 +0800 |
commit | b9bb9ed1d2712daf597be4109db93177904dfc3d (patch) | |
tree | 3c9652b1bff3b592d560e6ff9b93b49f9325dbf8 /databases/libmemcached/Makefile | |
parent | 02d2201c78b0442a3cfec5aa051e2bcfd3ce214c (diff) | |
download | freebsd-ports-gnome-b9bb9ed1d2712daf597be4109db93177904dfc3d.tar.gz freebsd-ports-gnome-b9bb9ed1d2712daf597be4109db93177904dfc3d.tar.zst freebsd-ports-gnome-b9bb9ed1d2712daf597be4109db93177904dfc3d.zip |
- Update devel/automake to 1.15
- Update devel/gettext to 0.19.4
- Update devel/libtool and devel/libltdl to 2.4.5
- This version of libtool has been fixed to pass -fstack-protector to the
compiler during linking. Add the same fix to USES=libtool. This should
improve SSP support on FreeBSD/i386 8 and 9.
- databases/libmemcached, security/sssd: patch configure.ac so
AC_CONFIG_AUX_DIR appears earlier.
For databases/libmemcached changing configure.ac causes manpages to be
regenerated which requires extra dependencies so patch a makefile to
prevent that.
- devel/xfce4-dev-tools: only depend on recent versions of autoconf and
automake
PR: 196938
Exp-run by: antoine
Approved by: portmgr (antoine)
Diffstat (limited to 'databases/libmemcached/Makefile')
-rw-r--r-- | databases/libmemcached/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/databases/libmemcached/Makefile b/databases/libmemcached/Makefile index 8e342cfac1c6..27185414aed3 100644 --- a/databases/libmemcached/Makefile +++ b/databases/libmemcached/Makefile @@ -19,9 +19,10 @@ USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --without-memcached \ + --without-sphinx-build \ --enable-libmemcachedprotocol -LDFLAGS+= -L${LOCALBASE}/lib -lexecinfo +LIBS+= -L${LOCALBASE}/lib -lexecinfo CXXFLAGS+= -D__STDC_CONSTANT_MACROS OPTIONS_DEFINE= DEBUG DTRACE MEMASLAP SASL @@ -50,6 +51,7 @@ PATHFIX_MAKEFILEIN= include.am post-patch: @${REINPLACE_CMD} -e '/^LDFLAGS *=/ s/$$/ $${LTLIBSASL2}/' \ ${WRKSRC}/Makefile.in + @${REINPLACE_CMD} '/MAKE.*man/d' ${WRKSRC}/man/include.am post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.so.* |