This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project wmaker-crm.git.
The branch, next has been updated
via ada7161d8d3ab0250eb766b51f42247c0dc75999 (commit)
from 70c9208e4056121ad9e020a2bbbfd236c080d5fa (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://repo.or.cz/w/wmaker-crm.git/commit/ada7161d8d3ab0250eb766b51f42247c0dc75999
commit ada7161d8d3ab0250eb766b51f42247c0dc75999
Author: Wade Berrier <[email protected]>
Date: Sat Jan 26 00:00:36 2013 -0700
autoconf: add remaining parameter for AC_SEARCH_LIBS
According to:
http://www.gnu.org/software/autoconf/manual/autoconf-2.67/html_node/Libraries.html
Found this while trying to compile for RHEL6. Otherwise, configure
failed.
diff --git a/configure.ac b/configure.ac
index d8acbeb..6820f15 100644
--- a/configure.ac
+++ b/configure.ac
@@ -165,7 +165,8 @@ AC_ARG_ENABLE([boehm-gc],
AS_IF([test "x$with_boehm_gc" = "xyes"],
AC_SEARCH_LIBS([GC_malloc], [gc],
[AC_DEFINE(USE_BOEHM_GC, 1, [Define if Boehm GC is to be used])],
- [AC_MSG_FAILURE([--enable-boehm-gc specified but test for libgc
failed])]
+ [AC_MSG_FAILURE([--enable-boehm-gc specified but test for libgc
failed])],
+ []
)
)
@@ -210,10 +211,12 @@ AC_ARG_WITH([libbsd],
tmp_libs=$LIBS
AC_SEARCH_LIBS([strlcat],[$with_libbsd],
[AC_DEFINE(HAVE_STRLCAT, 1, [Define if strlcat is available])],
+ [],
[]
)
AC_SEARCH_LIBS([strlcpy],[$with_libbsd],
[AC_DEFINE(HAVE_STRLCAT, 1, [Define if strlcpy is available])],
+ [],
[]
)
LIBS=$tmp_libs
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
repo.or.cz automatic notification. Contact project admin [email protected]
if you want to unsubscribe, or site admin [email protected] if you receive
no reply.
--
wmaker-crm.git ("The Window Maker window manager")
--
To unsubscribe, send mail to [email protected].