From: Jan Safranek Date: Wed, 25 Mar 2009 09:28:34 +0000 (+0100) Subject: Disable compilation of static libraries X-Git-Tag: v0.34~73^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fe97107b28c97e312206ea8dc961b3d0aee48f4c;p=thirdparty%2Flibcgroup.git 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 --- diff --git a/configure.in b/configure.in index 19d62540..7f44ea67 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])