[Opensrf-commits] r967 - branches/autotools
svn at svn.open-ils.org
svn at svn.open-ils.org
Sun Jun 24 06:47:45 EDT 2007
Author: asmodai
Date: 2007-06-24 06:45:26 -0400 (Sun, 24 Jun 2007)
New Revision: 967
Modified:
branches/autotools/configure.ac
Log:
Fill in some tests and comment some others.
Modified: branches/autotools/configure.ac
===================================================================
--- branches/autotools/configure.ac 2007-06-24 10:44:57 UTC (rev 966)
+++ branches/autotools/configure.ac 2007-06-24 10:45:26 UTC (rev 967)
@@ -14,19 +14,19 @@
# Checks for libraries.
# FIXME: Replace `main' with a function in `-ldl':
-AC_CHECK_LIB([dl], [main])
-# FIXME: Replace `main' with a function in `-lmemcache':
-AC_CHECK_LIB([memcache], [main])
-# FIXME: Replace `main' with a function in `-lncurses':
-AC_CHECK_LIB([ncurses], [main])
+#AC_CHECK_LIB([dl], [main])
+# Test for libmemcache.
+AC_CHECK_LIB([memcache], [mcMemSetup])
+# Test for ncurses.
+AC_CHECK_LIB([ncurses], [initscr])
# FIXME: Replace `main' with a function in `-lobjson':
-AC_CHECK_LIB([objson], [main])
+#AC_CHECK_LIB([objson], [main])
# FIXME: Replace `main' with a function in `-lopensrf':
-AC_CHECK_LIB([opensrf], [main])
-# FIXME: Replace `main' with a function in `-lreadline':
-AC_CHECK_LIB([readline], [main])
-# FIXME: Replace `main' with a function in `-lxml2':
-AC_CHECK_LIB([xml2], [main])
+#AC_CHECK_LIB([opensrf], [main])
+# Test for libreadline.
+AC_CHECK_LIB([readline], [readline])
+# Test for libxml2.
+AC_CHECK_LIB([xml2], [xmlInitParser])
# Checks for header files.
AC_HEADER_STDC
More information about the opensrf-commits
mailing list