summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--collection/configure.ac7
-rw-r--r--dhash/configure.ac4
-rw-r--r--ini/configure.ac4
3 files changed, 9 insertions, 6 deletions
diff --git a/collection/configure.ac b/collection/configure.ac
index 573b45e..ed51593 100644
--- a/collection/configure.ac
+++ b/collection/configure.ac
@@ -1,9 +1,12 @@
-AC_INIT([collection], [0.3.3], [freeipa-devel@redhat.com])
+AC_INIT([collection],[0.3.3],[freeipa-devel@redhat.com])
AC_CONFIG_SRCDIR([collection.c])
AC_CONFIG_AUX_DIR([build])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AC_PROG_CC
-AC_PROG_LIBTOOL
+
+#Until the API is stabilized, we'll statically link
+LT_INIT([disable-shared])
+
AC_CONFIG_MACRO_DIR([m4])
AC_PROG_INSTALL
diff --git a/dhash/configure.ac b/dhash/configure.ac
index 13fd1ac..1cfd4b0 100644
--- a/dhash/configure.ac
+++ b/dhash/configure.ac
@@ -3,7 +3,7 @@ AC_CONFIG_SRCDIR([dhash.c])
AC_CONFIG_AUX_DIR([build])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AC_PROG_CC
-AC_PROG_LIBTOOL
+LT_INIT([disable-shared])
AC_CONFIG_MACRO_DIR([m4])
AC_PROG_INSTALL
@@ -17,4 +17,4 @@ AC_ARG_ENABLE([trace],
AS_IF([test ["$trace_level" -gt "0"] -a ["$trace_level" -lt "8"] ],[AC_SUBST([TRACE_VAR],["-DTRACE_LEVEL=$trace_level"])])
AC_CONFIG_FILES([Makefile dhash.pc])
-AC_OUTPUT \ No newline at end of file
+AC_OUTPUT
diff --git a/ini/configure.ac b/ini/configure.ac
index 5a88c9f..63fb116 100644
--- a/ini/configure.ac
+++ b/ini/configure.ac
@@ -1,9 +1,9 @@
-AC_INIT([ini_config], [0.3.3], [freeipa-devel@redhat.com])
+AC_INIT([ini_config],[0.3.3],[freeipa-devel@redhat.com])
AC_CONFIG_SRCDIR([ini_config.c])
AC_CONFIG_AUX_DIR([build])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AC_PROG_CC
-AC_PROG_LIBTOOL
+LT_INIT([disable-shared])
AC_CONFIG_MACRO_DIR([m4])
AC_PROG_INSTALL