diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-12-03 19:55:57 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-12-03 19:55:57 +0000 |
commit | 87703412c1bdc8f88f89dd7e4c13fb7df1a83c13 (patch) | |
tree | 62b2041e36b66db3f0b1cf129476a966f18cf361 | |
parent | fd7b0786e552e1a1d8dd978d3526f9ecddfa4f6b (diff) | |
download | prosody-87703412c1bdc8f88f89dd7e4c13fb7df1a83c13.tar.gz prosody-87703412c1bdc8f88f89dd7e4c13fb7df1a83c13.zip |
Fix configure to save LFLAGS, and also set proper defaults for all sensible OSes
-rwxr-xr-x | configure | 4 | ||||
-rw-r--r-- | util-src/Makefile | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -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 diff --git a/util-src/Makefile b/util-src/Makefile index 5dcd65d2..a325a0d6 100644 --- a/util-src/Makefile +++ b/util-src/Makefile @@ -28,5 +28,5 @@ encodings.so: encodings.o hashes.o: hashes.c gcc $(CFLAGS) -I$(LUA_INCDIR) -c -o hashes.o hashes.c hashes.so: hashes.o - export MACOSX_DEPLOYMENT_TARGET="10.3"; gcc $(LFLAGS) -o hashes.so hashes.o -L/usr/local/lib -lcrypto -lssl + export MACOSX_DEPLOYMENT_TARGET="10.3"; gcc $(CFLAGS) -o hashes.so hashes.o -L/usr/local/lib -lcrypto -lssl |