From: Jaroslav Kysela Date: Wed, 30 Mar 2011 15:30:09 +0000 (+0200) Subject: configure: Fail when the user attempts to compile shared and static libs X-Git-Tag: v1.0.25~44 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=cd20fe3f4d93c06500f5a6afb70c61e51762a2a6;p=alsa-lib.git configure: Fail when the user attempts to compile shared and static libs There are some issues with libtool breaking the possibility to build both types of libraries in one shot. Compile libraries separately. Signed-off-by: Jaroslav Kysela --- diff --git a/configure.in b/configure.in index e33e6298..7ee0ccc8 100644 --- a/configure.in +++ b/configure.in @@ -71,6 +71,16 @@ AC_SUBST(LIBTOOL_VERSION_INFO) test "x$prefix" = xNONE && prefix=$ac_default_prefix +dnl Do not build static and shared libraries together +if test "$enable_static" = "$enable_shared" -a "$enable_static" = "yes"; then +cat <