From: Michael Orlitzky Date: Tue, 26 May 2020 23:23:08 +0000 (-0400) Subject: configure.ac: disable static libraries by default. X-Git-Tag: v0.4.3~4 X-Git-Url: https://gitweb.michael.orlitzky.com/?p=apply-default-acl.git;a=commitdiff_plain;h=6f86f4948c94158193b3a22ae7c2e3956e744cb9 configure.ac: disable static libraries by default. Static libraries are a security risk and a waste of space. Most users will not want to build or install them, so this commit disables them by passing "disable-static" to the LT_INIT macro. If you really think you know what you're doing, they can be re-enabled by passing the "--enable-static" flag to ./configure. --- diff --git a/configure.ac b/configure.ac index 581134d..0200882 100644 --- a/configure.ac +++ b/configure.ac @@ -55,5 +55,5 @@ AC_CHECK_FUNC(asprintf, [], AC_MSG_ERROR(missing required asprintf function)) -LT_INIT +LT_INIT([disable-static]) AC_OUTPUT