summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSjoerd Simons <sjoerd.simons@collabora.co.uk>2011-04-01 14:54:46 +0200
committerSjoerd Simons <sjoerd.simons@collabora.co.uk>2011-04-01 14:54:46 +0200
commita9f9ad97bd3323f5b3bf366ac44149babdef9e98 (patch)
tree51fa3e19d88016437a5f3540a8e2536d47b595ca
parentd4757919765ff0677f53fae45c121b7153a7df81 (diff)
Enable shared library by default, static users should disable this
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index dc36814..b9995d4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -84,9 +84,9 @@ AC_SUBST([ENABLE_CODING_STYLE_CHECKS])
dnl shared library
AC_ARG_ENABLE(shared-library,
- AC_HELP_STRING([--enable-shared-library],
- [produce a shared library to install]),
- [ENABLE_SHARED_LIBRARY=yes], [ENABLE_SHARED_LIBRARY=no])
+ AC_HELP_STRING([--disable-shared-library],
+ [disable producing a shared library to install]),
+ [ENABLE_SHARED_LIBRARY=$enableval], [ENABLE_SHARED_LIBRARY=yes])
AM_CONDITIONAL(ENABLE_SHARED_LIBRARY, test "x$ENABLE_SHARED_LIBRARY" != "xno")