diff options
author | petef <petef@FreeBSD.org> | 2002-05-31 14:15:51 +0000 |
---|---|---|
committer | petef <petef@FreeBSD.org> | 2002-05-31 14:15:51 +0000 |
commit | 56616248c477c61ab367983daf6338fb849b30c5 (patch) | |
tree | 317767bc23d127b96fd4bca10682fb080f2cab22 /www/php-screw/files | |
parent | b3304a4afc6709d481922092101834c106e66c81 (diff) | |
download | FreeBSD-ports-56616248c477c61ab367983daf6338fb849b30c5.zip FreeBSD-ports-56616248c477c61ab367983daf6338fb849b30c5.tar.gz |
Add php-screw 1.1, a PHP script encryption tool.
PR: 38412
Submitted by: Alex Dupre <sysadmin@alexdupre.com>
Diffstat (limited to 'www/php-screw/files')
-rw-r--r-- | www/php-screw/files/patch-extension::Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/www/php-screw/files/patch-extension::Makefile b/www/php-screw/files/patch-extension::Makefile new file mode 100644 index 0000000..7481ce4 --- /dev/null +++ b/www/php-screw/files/patch-extension::Makefile @@ -0,0 +1,19 @@ +$FreeBSD$ + +--- extension/Makefile.orig Wed May 22 12:36:27 2002 ++++ extension/Makefile Wed May 22 12:36:51 2002 +@@ -1,11 +1,11 @@ + all: php_screw_ext.so screw + + php_screw_ext.so: php_screw_ext.c zencode.c +- gcc -fPIC -c php_screw_ext.c zencode.c +- gcc -shared -Wl -o php_screw_ext.so php_screw_ext.o zencode.o -lz ++ ${CC} -fPIC -c php_screw_ext.c zencode.c ++ ${CC} -shared -Wl -o php_screw_ext.so php_screw_ext.o zencode.o -lz + + screw: screw.c zencode.c +- gcc -o screw screw.c zencode.c -lz ++ ${CC} -o screw screw.c zencode.c -lz + + clean: + /bin/rm *.o *.so screw |