summaryrefslogtreecommitdiff
path: root/www/asp2php/patches
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2003-06-10 06:55:15 +0000
committerwiz <wiz@pkgsrc.org>2003-06-10 06:55:15 +0000
commit55e8d707c4a949215ba9391b7a4c126072a1b243 (patch)
treeff97f4f40074b2dc583df38f50f87bee47efde4a /www/asp2php/patches
parentdba12e651690cd8271750220aed7b49033962321 (diff)
downloadpkgsrc-55e8d707c4a949215ba9391b7a4c126072a1b243.tar.gz
Update to 0.76.17, based on PR 20506 by Todd Vierling (which contained
an update to 0.76.15). Some changes (from webpage, no ChangeLog included): Version 0.76.17 of asp2php is released. Fixed a problem with the _ char in "if" statements. Version 0.76.15 of asp2php is released. I fixed a problem with "foreach" and a bug with comments. Also added support for object oriented classes. If you have problems please let me know. Fixed a problem parsing functions that didn't have parenthesis around them. Added some Filesystem conversion code. Added an option to convert DOS path's with backslashes to Unix forward slashes (-fixwinpaths). Fixed a problem with preparsing include files.
Diffstat (limited to 'www/asp2php/patches')
-rw-r--r--www/asp2php/patches/patch-aa13
1 files changed, 7 insertions, 6 deletions
diff --git a/www/asp2php/patches/patch-aa b/www/asp2php/patches/patch-aa
index 05813c252d7..3cf48acf15b 100644
--- a/www/asp2php/patches/patch-aa
+++ b/www/asp2php/patches/patch-aa
@@ -1,25 +1,26 @@
-$NetBSD: patch-aa,v 1.2 2002/06/10 02:05:04 shell Exp $
+$NetBSD: patch-aa,v 1.3 2003/06/10 06:55:16 wiz Exp $
---- Makefile.orig Mon Jun 10 10:00:48 2002
+--- Makefile.orig Wed Mar 26 19:35:11 2003
+++ Makefile
-@@ -1,6 +1,7 @@
+@@ -1,7 +1,8 @@
-CC=gcc
+CC+=${CFLAGS}
LD=ld
+ CFLAGS=-Wall
+BINDIR=${PREFIX}/bin
default:
cd src && make
-@@ -16,14 +17,14 @@
+@@ -18,14 +19,14 @@ gui:
@mv src/gtkasp2php .
install:
- @if [ -e asp2php ]; then install asp2php /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 gtkasp2php ]; then install gtkasp2php ${BINDIR}; fi;
++ @if [ -e asp2php ]; then install -c asp2php ${BINDIR}; fi;
++ @if [ -e gtkasp2php ]; then install -c gtkasp2php ${BINDIR}; fi;
+ @echo "Compiled programs have been installed in ${BINDIR}"
@echo ""