[Fedora-directory-commits] ldapserver/m4 db.m4, 1.5, 1.6 netsnmp.m4, 1.2, 1.3 svrcore.m4, 1.3, 1.4

Nathan Kinder (nkinder) fedora-directory-commits at redhat.com
Wed Feb 7 23:26:26 UTC 2007


Author: nkinder

Update of /cvs/dirsec/ldapserver/m4
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv15726/m4

Modified Files:
	db.m4 netsnmp.m4 svrcore.m4 
Log Message:
Resolves: 227754
Summary: Set library search path when using AC_CHECK_LIB in db.m4.



Index: db.m4
===================================================================
RCS file: /cvs/dirsec/ldapserver/m4/db.m4,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- db.m4	6 Feb 2007 15:51:22 -0000	1.5
+++ db.m4	7 Feb 2007 23:26:19 -0000	1.6
@@ -1,5 +1,5 @@
 # BEGIN COPYRIGHT BLOCK
-# Copyright (C) 2006 Red Hat, Inc.
+# Copyright (C) 2007 Red Hat, Inc.
 # All rights reserved.
 #
 # This program is free software; you can redistribute it and/or
@@ -73,7 +73,10 @@
 db_libver=${db_ver_maj}.${db_ver_min}
 dnl make sure the lib is available
 dnl use true so libdb won't be added to LIBS
+save_ldflags="$LDFLAGS"
+LDFLAGS="$db_lib"
 AC_CHECK_LIB([db-$db_libver], [db_create], [true],
   [AC_MSG_ERROR([$db_incdir/db.h is version $db_libver but libdb-$db_libver not found])],
   [$LIBNSL])
+LDFLAGS="$save_ldflags"
 


Index: netsnmp.m4
===================================================================
RCS file: /cvs/dirsec/ldapserver/m4/netsnmp.m4,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- netsnmp.m4	24 Oct 2006 21:11:02 -0000	1.2
+++ netsnmp.m4	7 Feb 2007 23:26:19 -0000	1.3
@@ -87,7 +87,6 @@
 
 dnl -  find dependent libs with net-snmp-config
 if test -n "$netsnmp_inc"; then
-  AC_MSG_CHECKING(for netsnmp libs with net-snmp-config)
   if test -x "$NETSNMPDIR/bin/net-snmp-config"; then
     NETSNMP_CONFIG=$NETSNMPDIR/bin/net-snmp-config
   else


Index: svrcore.m4
===================================================================
RCS file: /cvs/dirsec/ldapserver/m4/svrcore.m4,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- svrcore.m4	12 Jan 2007 16:18:15 -0000	1.3
+++ svrcore.m4	7 Feb 2007 23:26:19 -0000	1.4
@@ -1,6 +1,26 @@
-# -*- tab-width: 4; -*-
+# BEGIN COPYRIGHT BLOCK
+# Copyright (C) 2007 Red Hat, Inc.
+# All rights reserved.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+#
+# END COPYRIGHT BLOCK
+#
 # Configure paths for SVRCORE
-# Public domain - Nathan Kinder <nkinder at redhat.com> 2006-06-26
+
+AC_CHECKING(for svrcore)
 
 AC_MSG_CHECKING(for --with-svrcore)
 AC_ARG_WITH(svrcore,
@@ -65,8 +85,8 @@
 
 dnl svrcore not given - look for pkg-config
 if test -z "$svrcore_inc" -o -z "$svrcore_lib"; then
-  AC_MSG_CHECKING(for svrcore with pkg-config)
   AC_PATH_PROG(PKG_CONFIG, pkg-config)
+  AC_MSG_CHECKING(for svrcore with pkg-config)
   if test -n "$PKG_CONFIG"; then
     if $PKG_CONFIG --exists svrcore; then
       svrcore_inc=`$PKG_CONFIG --cflags-only-I svrcore`




More information about the Fedora-directory-commits mailing list