From 1f7b0f2bf8c602896e3cb17abcebcef91cd1cd1a Mon Sep 17 00:00:00 2001 From: Lucas De Marchi Date: Mon, 9 Dec 2013 15:51:42 -0200 Subject: [PATCH] build: Disable static library by default Static library isn't enabled by default anymore. It can be enabled back by passing --enable-static. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index a5d5047..9483a59 100644 --- a/configure.ac +++ b/configure.ac @@ -19,7 +19,7 @@ AC_HEADER_STDC AC_C_CONST define([AC_LIBTOOL_LANG_F77_CONFIG], [:])dnl -AC_PROG_LIBTOOL +LT_INIT([disable-static]) VMAJ=`echo $PACKAGE_VERSION | awk -F. '{printf("%s", $1);}'` VMIN=`echo $PACKAGE_VERSION | awk -F. '{printf("%s", $2);}'` -- 2.7.4