diff options
author | agc <agc@pkgsrc.org> | 2001-11-22 11:26:59 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2001-11-22 11:26:59 +0000 |
commit | ff632b280ac09b5ce647da0f88548e5f86c2c805 (patch) | |
tree | 831b77c96fa22dd5f98fbcbb250014fa3454a687 /www/asp2php/patches | |
parent | 032fedc78a6679d5a2572efea30fa2a8168edb10 (diff) | |
download | pkgsrc-ff632b280ac09b5ce647da0f88548e5f86c2c805.tar.gz |
Upgrade this package from version 0.73.4 to 0.75.24
Differences from previous version:
Fixed a problem with ' and % inside quotes for version 0.75.21.
Fixed a bug whereby line numbers were reported wrongly, introduced
when the recursive directories feature was added to asp2php.
Fixed the gettoken() function so it parses Response.Write"blah"
correctly (not having a space between the Write and " confused it)
Added support for the JMail object so asp2php will send mails now
Added limited support for global.asa
Added/Fixed the problem with parsing Functions and Subs
And other miscellaneous bug fixes
Provided in PR pkg/14568 by Shell Hung (shell@shellhung.org), modified
slightly by me, to place the gtk functionality in a different package,
to be committed soon.
Diffstat (limited to 'www/asp2php/patches')
-rw-r--r-- | www/asp2php/patches/patch-aa | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/www/asp2php/patches/patch-aa b/www/asp2php/patches/patch-aa new file mode 100644 index 00000000000..5d1e40d62e9 --- /dev/null +++ b/www/asp2php/patches/patch-aa @@ -0,0 +1,27 @@ +$NetBSD: patch-aa,v 1.1 2001/11/22 11:26:59 agc Exp $ + +--- Makefile.orig Mon Jul 9 02:54:24 2001 ++++ Makefile Mon Jul 9 02:55:51 2001 +@@ -1,5 +1,6 @@ + +-CC=gcc ++CC+= ${CFLAGS} ++BINDIR= ${PREFIX}/bin + + default: + $(CC) -c conditionals.c -Wall +@@ -44,10 +45,10 @@ + $(CC) -o unipiss unipiss.c html.o general.o -Wall + + install: +- @if [ -e asp2php ]; then install asp2php /usr/local/bin; fi; +- @if [ -e unipiss ]; then install unipiss /usr/local/bin; fi; +- @if [ -e gtkasp2php ]; then install gtkasp2php /usr/local/bin; fi; +- @echo "Compiled programs have been installed in /usr/local/bin" ++ @if [ -e asp2php ]; then install asp2php ${BINDIR}; fi; ++ @if [ -e unipiss ]; then install unipiss ${BINDIR}; fi; ++ @if [ -e gtkasp2php ]; then install gtkasp2php ${BINDIR}; fi; ++ @echo "Compiled programs have been installed in ${BINDIR}" + @echo "" + + all: default |