diff options
author | matthew <matthew@FreeBSD.org> | 2017-06-10 03:06:41 +0800 |
---|---|---|
committer | matthew <matthew@FreeBSD.org> | 2017-06-10 03:06:41 +0800 |
commit | e04dddf11ab574043ff31c8f9c6245fd4428ccd5 (patch) | |
tree | 6f7b7c0d2cbf71223575eae4ed5b8f87b50a14a1 | |
parent | c6102f2bc5570e1bfb0b2a79f048c7b7c78f2c8d (diff) | |
download | freebsd-ports-gnome-e04dddf11ab574043ff31c8f9c6245fd4428ccd5.tar.gz freebsd-ports-gnome-e04dddf11ab574043ff31c8f9c6245fd4428ccd5.tar.zst freebsd-ports-gnome-e04dddf11ab574043ff31c8f9c6245fd4428ccd5.zip |
Fix the build in a better way -- this works irrespective of the SASL
option setting
PR: 219168
Submitted by: sunpoet
-rw-r--r-- | databases/libmemcached/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/libmemcached/Makefile b/databases/libmemcached/Makefile index 5e89b34a0437..2864e37b55ff 100644 --- a/databases/libmemcached/Makefile +++ b/databases/libmemcached/Makefile @@ -23,8 +23,8 @@ CONFIGURE_ARGS= --without-memcached \ --without-sphinx-build \ --enable-libmemcachedprotocol -LIBS+= -L${LOCALBASE}/lib -lexecinfo -lthr -CXXFLAGS+= -D__STDC_CONSTANT_MACROS +LIBS+= -L${LOCALBASE}/lib -lexecinfo +CXXFLAGS+= -D__STDC_CONSTANT_MACROS -pthread OPTIONS_DEFINE= DEBUG DTRACE MEMASLAP SASL OPTIONS_DEFAULT= MEMASLAP SASL MURMUR FNV64 |