check for required libraries in the configure
authorcompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Thu, 29 May 2003 18:16:56 +0000 (18:16 +0000)
committercompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Thu, 29 May 2003 18:16:56 +0000 (18:16 +0000)
git-svn-id: http://ltt.polymtl.ca/svn@37 04897980-b3bd-0310-b5e0-8ef037075253

ltt/branches/poly/config.h.in
ltt/branches/poly/configure.in
ltt/branches/poly/lttv/Makefile.am

index 9b015acb186879bf832c07cffb9093d486256bff..e16fb678127aa33e643fc53ad5226b24f027d8bd 100644 (file)
@@ -9,6 +9,18 @@
 /* Define to 1 if you have the <inttypes.h> header file. */
 #undef HAVE_INTTYPES_H
 
+/* Define to 1 if you have the `dl' library (-ldl). */
+#undef HAVE_LIBDL
+
+/* Define to 1 if you have the `glib-2.0' library (-lglib-2.0). */
+#undef HAVE_LIBGLIB_2_0
+
+/* Define to 1 if you have the `gmodule-2.0' library (-lgmodule-2.0). */
+#undef HAVE_LIBGMODULE_2_0
+
+/* Define to 1 if you have the `popt' library (-lpopt). */
+#undef HAVE_LIBPOPT
+
 /* Define to 1 if your system has a GNU libc compatible `malloc' function, and
    to 0 otherwise. */
 #undef HAVE_MALLOC
index 9a4150c0d050f7d483973eadee1f0cb3ae358ebc..e6731008ff1b0a7dc074bcae7fdb82320a248b56 100644 (file)
@@ -12,11 +12,10 @@ AM_PROG_LIBTOOL
 AC_PROG_CC
 
 # Checks for libraries.
-# MD : here or at the Makefile level ?
-#AC_CHECK_LIB([popt], [poptGetNextOpt])
-#AC_CHECK_LIB([gmodule-2.0], [g_module_open])
-#AC_CHECK_LIB([dl], [dlopen])
-#AC_CHECK_LIB([glib-2.0], [g_malloc])
+AC_CHECK_LIB([popt], [poptGetNextOpt])
+AC_CHECK_LIB([gmodule-2.0], [g_module_open])
+AC_CHECK_LIB([dl], [dlopen])
+AC_CHECK_LIB([glib-2.0], [g_malloc])
 
 # Checks for header files.
 AC_HEADER_STDC
index 334357620e6225ef234a41651375c891f8eb5194..34e841ad3df9c42a5bfec04b2310d0615bac32a9 100644 (file)
@@ -5,4 +5,4 @@ AM_CPPFLAGS = \
 
 # MD //FIXME add headers dependancy
 textui_SOURCES = main.c module.c option.c hook.c attribute.c
-textui_LDFLAGS = -lpopt -lgmodule-2.0 -ldl -lglib-2.0
+#textui_LDFLAGS = -lpopt -lgmodule-2.0 -ldl -lglib-2.0
This page took 0.02442 seconds and 4 git commands to generate.