From 6f86f4948c94158193b3a22ae7c2e3956e744cb9 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Tue, 26 May 2020 19:23:08 -0400 Subject: [PATCH] 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. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.43.2