summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2013-04-25 16:35:04 +0200
committerFridrich Štrba <fridrich.strba@bluewin.ch>2013-04-25 16:35:04 +0200
commitc2e108670cb4e6ca480b6b08fd628a21de07b205 (patch)
treea0fb014cb8109ad94babff6ed24918e93005a857
parent28509115f7f60541d69b37bea0720305ea13d363 (diff)
Disable static libraries by default
-rw-r--r--configure.ac6
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 0b7ddcf..fe4e85b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -30,8 +30,9 @@ AC_PROG_CXX
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
-AC_PROG_LIBTOOL
-AC_LIBTOOL_WIN32_DLL
+LT_INIT(win32-dll disable-static)
+AC_CANONICAL_HOST
+
PKG_PROG_PKG_CONFIG([0.20])
AC_PROG_EGREP
@@ -40,6 +41,7 @@ AC_PROG_SED
dnl ===================================================================
dnl Check for gperf
dnl ===================================================================
+AC_ARG_VAR(GPERF, [Setting this variable will override the gperf detection])
AC_PATH_PROG(GPERF, gperf)
if test -z "$GPERF"; then
AC_MSG_ERROR([gperf not found but needed. Install it.])