summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authoragc <agc>2001-11-22 11:26:59 +0000
committeragc <agc>2001-11-22 11:26:59 +0000
commiteb74c6a8500db4e44674a0f7cb5e39b9f5fa25b2 (patch)
tree831b77c96fa22dd5f98fbcbb250014fa3454a687 /www
parent8c8a9f47aa7d40f0589f7c442feb136c9d025c97 (diff)
downloadpkgsrc-eb74c6a8500db4e44674a0f7cb5e39b9f5fa25b2.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')
-rw-r--r--www/asp2php/patches/patch-aa27
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