mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-27 04:05:58 +00:00
Merged UDF Linux and Windows development environments
This commit is contained in:
parent
746cbdba96
commit
d4d26b59eb
16 changed files with 1200 additions and 278 deletions
16
extra/udfhack/linux/lib_postgresqludf_sys/Makefile
Normal file
16
extra/udfhack/linux/lib_postgresqludf_sys/Makefile
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
LIBDIR=/tmp
|
||||
|
||||
8.4:
|
||||
gcc -Wall -I/usr/include/postgresql/8.4/server -O1 -shared lib_postgresqludf_sys.c -o lib_postgresqludf_sys.so
|
||||
strip -sx lib_postgresqludf_sys.so
|
||||
cp -f lib_postgresqludf_sys.so $(LIBDIR)/lib_postgresqludf_sys.so
|
||||
|
||||
8.3:
|
||||
gcc -Wall -I/usr/include/postgresql/8.3/server -O1 -shared lib_postgresqludf_sys.c -o lib_postgresqludf_sys.so
|
||||
strip -sx lib_postgresqludf_sys.so
|
||||
cp -f lib_postgresqludf_sys.so $(LIBDIR)/lib_postgresqludf_sys.so
|
||||
|
||||
8.2:
|
||||
gcc -Wall -I/usr/include/postgresql/8.2/server -O1 -shared lib_postgresqludf_sys.c -o lib_postgresqludf_sys.so
|
||||
strip -sx lib_postgresqludf_sys.so
|
||||
cp -f lib_postgresqludf_sys.so $(LIBDIR)/lib_postgresqludf_sys.so
|
||||
Loading…
Add table
Add a link
Reference in a new issue