From fe97107b28c97e312206ea8dc961b3d0aee48f4c Mon Sep 17 00:00:00 2001 From: Jan Safranek Date: Wed, 25 Mar 2009 10:28:34 +0100 Subject: Disable compilation of static libraries Disable compilation of static libraries. Static libraries (.a files) should not be compiled by default, shared library is better for LGPL licensed code. Still, one can enable static libraries with ./configure --enable-static Signed-off-by: Jan Safranek --- configure.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure.in b/configure.in index 19d6254..7f44ea6 100644 --- a/configure.in +++ b/configure.in @@ -22,6 +22,8 @@ AM_INIT_AUTOMAKE(libcgroup, 0.34) # soname is libcgroup.so.X AC_SUBST(LIBRARY_VERSION, 1:0:34) +# we do not want static libraries +AC_DISABLE_STATIC AC_CONFIG_SRCDIR([src]) AC_CONFIG_HEADER([config.h]) -- cgit