diff options
author | Kubilay Kocak <koobs@FreeBSD.org> | 2014-12-11 05:26:39 +0000 |
---|---|---|
committer | Kubilay Kocak <koobs@FreeBSD.org> | 2014-12-11 05:26:39 +0000 |
commit | b6450d4ca70121f6e8fb4c91de9eae9b6c94cd43 (patch) | |
tree | f5a000db9f0e619637a2579179a2d471d62b1c7e /databases/libmemcached/files/patch-libmemcached_assert.hpp | |
parent | Update to 0.3.3 (diff) |
databases/libmemcached: Update to 1.0.18 and much more
- Update to 1.0.18 and pkg-plist accordingly
- Add LICENSE (BSD3CLAUSE) and LICENSE_FILE
- Add TEST_DEPENDS and regression-test target
- Perl is not required, remove USE_PERL and from USES
- Split LDFLAGS from CONFIGURE_ENV, they're already set there
- Add libmemcachedprotocol to CONFIGURE_ARGS (Now default: off)
- Add OPTIONS for hash functions, debug and dtrace
- pkg-descr: Update WWW: URL
- Add patches for:
* alloca.h include not found on FreeBSD
* cinttypes include location
* clang compatibility
- Strip shared libraries manually since upstream install-strip target is
fail
Changes:
https://launchpad.net/libmemcached/+announcements
[1] https://bugs.launchpad.net/libmemcached/+bug/1245562
[2] https://bugs.launchpad.net/libmemcached/+bug/1400560
Approved by: Mikhail Tsatsenko <m.tsatsenko@gmail.com> (maintainer, via email)
Notes
Notes:
svn path=/head/; revision=374511
Diffstat (limited to 'databases/libmemcached/files/patch-libmemcached_assert.hpp')
-rw-r--r-- | databases/libmemcached/files/patch-libmemcached_assert.hpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/databases/libmemcached/files/patch-libmemcached_assert.hpp b/databases/libmemcached/files/patch-libmemcached_assert.hpp new file mode 100644 index 000000000000..83a464c748e3 --- /dev/null +++ b/databases/libmemcached/files/patch-libmemcached_assert.hpp @@ -0,0 +1,13 @@ +--- libmemcached/assert.hpp.orig 2014-12-10 05:16:11 UTC ++++ libmemcached/assert.hpp +@@ -51,8 +51,10 @@ + # ifdef _WIN32 + # include <malloc.h> + # else ++#ifdef HAVE_ALLOCA_H + # include <alloca.h> + # endif ++# endif + + #ifdef __cplusplus + # include <cstdarg> |