From aee3e66457be1be3fbdd19f95c59168aca175b1c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ludovic=20Court=C3=A8s?= Date: Mon, 20 Apr 2009 19:32:41 +0200 Subject: [PATCH] Disable static libraries by default. * configure.ac: Use `LT_INIT' instead of `AC_PROG_LIBTOOL'; disable static libraries by default. --- configure.ac | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 19c03c2..de5adf4 100644 --- a/configure.ac +++ b/configure.ac @@ -23,7 +23,9 @@ AC_ARG_WITH([guilemoduledir], # Checks for programs. AC_PROG_CC gl_EARLY -AC_PROG_LIBTOOL + +# Disable static libraries as this is usually useless. +LT_INIT([disable-static]) # Gnulib. gl_INIT -- 2.11.4.GIT