diff mbox

[3/5] Add -static earlier to LDFLAGS for compile_prog()

Message ID 0435e801928e38b298ff72f19236299298ce4f02.1264008180.git.quintela@redhat.com
State New
Headers show

Commit Message

Juan Quintela Jan. 20, 2010, 5:27 p.m. UTC
From: Loïc Minier <lool@dooz.org>

Add -static to LDFLAGS earlier as to run the compile_prog() tests with
this flags, this will avoid turning on features for which a shared
library is available but not a static one.

Signed-off-by: Loïc Minier <lool@dooz.org>
Signed-off-by: Juan Quintela <quintela@redhat.com>
---
 configure |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)
diff mbox

Patch

diff --git a/configure b/configure
index c671918..83f8b26 100755
--- a/configure
+++ b/configure
@@ -456,7 +456,9 @@  for opt do
   ;;
   --enable-gprof) gprof="yes"
   ;;
-  --static) static="yes"
+  --static)
+    static="yes"
+    LDFLAGS="-static $LDFLAGS"
   ;;
   --disable-sdl) sdl="no"
   ;;
@@ -1977,7 +1979,6 @@  if test "$solaris" = "yes" ; then
 fi
 if test "$static" = "yes" ; then
   echo "CONFIG_STATIC=y" >> $config_host_mak
-  LDFLAGS="-static $LDFLAGS"
 fi
 if test $profiler = "yes" ; then
   echo "CONFIG_PROFILER=y" >> $config_host_mak