From e964ff70e696f30f0301d11deb45c8ada54e0c55 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 6 Mar 2013 14:58:48 +0000 Subject: [PATCH] Fix --disable-static, reported by Shea Levy. --- configure.ac | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 84aec0fb..9e060df7 100644 --- a/configure.ac +++ b/configure.ac @@ -53,8 +53,11 @@ AM_CONDITIONAL(IS_DEBUG, test "x$found_debug" = xyes) AC_ARG_ENABLE( static, AC_HELP_STRING(--enable-static, create a static build), - [LDFLAGS="$LDFLAGS -static"] + found_static=$enable_static ) +if test "x$found_static" = xyes; then + LDFLAGS="$LDFLAGS -static" +fi # Is this gcc? AM_CONDITIONAL(IS_GCC, test "x$GCC" = xyes)