Add -fPIC to util-src/Makefile

This commit is contained in:
Matthew Wild 2008-11-29 22:20:59 +00:00
parent 4bed2a5772
commit e6c50bbe65

View file

@ -21,8 +21,8 @@ clean:
rm -f ../util/*.so rm -f ../util/*.so
encodings.so: encodings.c encodings.so: encodings.c
gcc -shared encodings.c -I$(LUA_INCDIR) -l$(LUA_LIB) -l$(IDN_LIB) -o encodings.so gcc -shared -fPIC encodings.c -I$(LUA_INCDIR) -l$(LUA_LIB) -l$(IDN_LIB) -o encodings.so
hashes.so: hashes.c hashes.so: hashes.c
gcc -shared hashes.c -I$(LUA_INCDIR) -l$(LUA_LIB) -l$(OPENSSL_LIB) -o hashes.so gcc -shared -fPIC hashes.c -I$(LUA_INCDIR) -l$(LUA_LIB) -l$(OPENSSL_LIB) -o hashes.so