From f202e250096c9ede75321adc20ac4dec56294ca2 Mon Sep 17 00:00:00 2001 From: Tobias Markmann Date: Wed, 3 Dec 2008 19:43:59 +0100 Subject: Using new LFLAGS variable. --- configure | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index a647d910..5de9f67a 100755 --- a/configure +++ b/configure @@ -125,7 +125,8 @@ then LUA_INCDIR_SET=yes LUA_LIBDIR=/usr/local/lib LUA_LIBDIR_SET=yes - CFLAGS="-bundle -Wl,-undefined,dynamic_lookup" + CFLAGS="" + LFLAGS="-bundle -undefined dynamic_lookup" fi fi -- cgit v1.2.3 From 87703412c1bdc8f88f89dd7e4c13fb7df1a83c13 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Wed, 3 Dec 2008 19:55:57 +0000 Subject: Fix configure to save LFLAGS, and also set proper defaults for all sensible OSes --- configure | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index 5de9f67a..8eb7b367 100755 --- a/configure +++ b/configure @@ -13,7 +13,8 @@ LUA_LIBDIR="/usr/lib" IDN_LIB=idn OPENSSL_LIB=crypto -CFLAGS="-shared -fPIC" +CFLAGS="-fPIC" +LFLAGS="-shared" # Help @@ -277,6 +278,7 @@ REQUIRE_CONFIG=$REQUIRE_CONFIG IDN_LIB=$IDN_LIB OPENSSL_LIB=$OPENSSL_LIB CFLAGS=$CFLAGS +LFLAGS=$LFLAGS EOF -- cgit v1.2.3