forked from Lainports/freebsd-ports
- 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)
29 lines
1.4 KiB
Text
29 lines
1.4 KiB
Text
Fixed a bug that caused configure to disobey the enable/disable debug flag. The debug flag will default to disabled if not specified.
|
|
diff -ru libmemcached-1.0.18-orig/m4/ax_debug.m4 libmemcached-1.0.18/m4/ax_debug.m4
|
|
--- m4/ax_debug.m4 2014-11-05 14:43:53.720284916 -0600
|
|
+++ m4/ax_debug.m4 2014-11-19 14:23:19.512482198 -0600
|
|
@@ -49,16 +49,18 @@
|
|
[AC_PREREQ([2.63])dnl
|
|
AC_ARG_ENABLE([debug],
|
|
[AS_HELP_STRING([--enable-debug],
|
|
- [Add debug code/turns off optimizations (yes|no) @<:@default=no@:>@])],
|
|
- [ax_enable_debug=yes
|
|
+ [Add debug code/turns off optimizations (yes|no) @<:@default=no@:>@])])
|
|
+ AS_IF([test "x$enable_debug" = "xyes"], [
|
|
+ ax_enable_debug=yes
|
|
AC_DEFINE([DEBUG],[1],[Define to 1 to enable debugging code.])
|
|
AX_CHECK_LIBRARY([MCHECK],[mcheck.h],[mcheck],[AX_APPEND_LINK_FLAGS([-lmcheck])])
|
|
AX_ADD_AM_MACRO([--debug],[AM_YFLAGS])
|
|
- AX_ADD_AM_MACRO([-D_GLIBCXX_DEBUG],[AM_CPPFLAGS])],
|
|
- [ax_enable_debug=no
|
|
+ AX_ADD_AM_MACRO([-D_GLIBCXX_DEBUG],[AM_CPPFLAGS])
|
|
+ ], [
|
|
+ ax_enable_debug=no
|
|
AC_SUBST([MCHECK])
|
|
- AC_DEFINE([DEBUG],[0],[Define to 1 to enable debugging code.])])
|
|
-
|
|
+ AC_DEFINE([DEBUG],[0],[Define to 1 to enable debugging code.])
|
|
+ ])
|
|
AC_MSG_CHECKING([for debug])
|
|
AC_MSG_RESULT([$ax_enable_debug])
|
|
AM_CONDITIONAL([DEBUG],[test "x${ax_enable_debug}" = "xyes"])])
|