aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xconfigure3
-rw-r--r--util-src/Makefile15
2 files changed, 12 insertions, 6 deletions
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
diff --git a/util-src/Makefile b/util-src/Makefile
index fdb689dd..5dcd65d2 100644
--- a/util-src/Makefile
+++ b/util-src/Makefile
@@ -12,16 +12,21 @@ OPENSSL_LIB?=crypto
all: encodings.so hashes.so
install: encodings.so hashes.so
- install -s *.so ../util/
+ install *.so ../util/
clean:
rm -f *.so
rm -f ../util/*.so
-encodings.so: encodings.c
- gcc $(CFLAGS) encodings.c -I$(LUA_INCDIR) -l$(LUA_LIB) -l$(IDN_LIB) -o encodings.so
+encodings.o: encodings.c
+ gcc $(CFLAGS) -I$(LUA_INCDIR) -c -o encodings.o encodings.c
+encodings.so: encodings.o
+ export MACOSX_DEPLOYMENT_TARGET="10.3"; gcc $(LFLAGS) -o encodings.so encodings.o -L/usr/local/lib -lcrypto -lidn
+
-hashes.so: hashes.c
- gcc $(CFLAGS) hashes.c -I$(LUA_INCDIR) -l$(LUA_LIB) -l$(OPENSSL_LIB) -o hashes.so
+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