Clean up defines, and add dlfunc check.
authorScott Cantor <cantor.2@osu.edu>
Mon, 17 Apr 2006 01:49:21 +0000 (01:49 +0000)
committerScott Cantor <cantor.2@osu.edu>
Mon, 17 Apr 2006 01:49:21 +0000 (01:49 +0000)
config_win32.h
configure.ac

index 89d112b..6dea2f2 100644 (file)
 #define HAVE_INTTYPES_H 1\r
 */\r
 \r
-/* Define to 1 if you have the `crypto' library (-lcrypto). */\r
-#define HAVE_LIBCRYPTO 1\r
-\r
-/* Define to 1 if you have the `curl' library (-lcurl). */\r
-#define HAVE_LIBCURL 1\r
-\r
 /* Define if log4cpp library was found */\r
 #define HAVE_LIBLOG4CPP 1\r
 \r
-/* Define to 1 if you have the `ssl' library (-lssl). */\r
-#define HAVE_LIBSSL 1\r
-\r
 /* Define if Xerces-C library was found */\r
 #define HAVE_LIBXERCESC 1\r
 \r
 /* define if the compiler implements namespaces */\r
 #define HAVE_NAMESPACES 1\r
 \r
-/* Define if you have POSIX threads libraries and header files.\r
-#define HAVE_PTHREAD 1\r
-*/\r
-\r
 /* Define to 1 if you have the <stdint.h> header file. */\r
 /* #undef HAVE_STDINT_H */\r
 \r
@@ -52,9 +39,6 @@
 /* Define to 1 if you have the `strdup' function. */\r
 #define HAVE_STRDUP 1\r
 \r
-/* Define to 1 if you have the `strftime' function. */\r
-/* #undef HAVE_STRFTIME */\r
-\r
 /* Define to 1 if you have the <strings.h> header file.\r
 #define HAVE_STRINGS_H 1\r
 */\r
 /* Version number of package */\r
 #define VERSION "1.0"\r
 \r
+/* Define if you wish to disable XML-Security-dependent features. */\r
+/* #undef XMLTOOLING_NO_XMLSEC */\r
+\r
 /* Define to empty if `const' does not conform to ANSI C. */\r
 /* #undef const */\r
 \r
index edf8fbf..6113c64 100644 (file)
@@ -56,6 +56,7 @@ AC_TYPE_SIZE_T
 # Checks for library functions.
 AC_CHECK_FUNCS([strchr strdup strstr])
 AC_CHECK_HEADERS([dlfcn.h])
+AC_CHECK_FUNC(dlclose, , [ AC_CHECK_LIB(dl, dlopen) ])
 
 AC_LANG(C++)