summaryrefslogtreecommitdiff
path: root/textproc/rxp/files/patch-aa
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2001-03-10 04:59:24 +0000
committerKris Kennaway <kris@FreeBSD.org>2001-03-10 04:59:24 +0000
commitd10957ba2985c5ecd759e1456472dccb508f1d33 (patch)
treedbc99cd9ac9de26dd6457b91e4469db7c7ce5e16 /textproc/rxp/files/patch-aa
parentCorrect checksum. (diff)
Switch to using a versioned distfile - the non-versioned one currently
points to a newer beta release. Respect CFLAGS and bump PORTREVISION.
Diffstat (limited to 'textproc/rxp/files/patch-aa')
-rw-r--r--textproc/rxp/files/patch-aa15
1 files changed, 15 insertions, 0 deletions
diff --git a/textproc/rxp/files/patch-aa b/textproc/rxp/files/patch-aa
new file mode 100644
index 000000000000..70007f28fd28
--- /dev/null
+++ b/textproc/rxp/files/patch-aa
@@ -0,0 +1,15 @@
+--- Makefile.orig Fri Mar 9 20:55:41 2001
++++ Makefile Fri Mar 9 20:55:58 2001
+@@ -3,9 +3,10 @@
+ CHAR_SIZE=16
+
+ DEBUG= -g
+-CC= gcc
++CC?= gcc
+ GCCFLAGS= -Wall -ansi -pedantic
+-CFLAGS= $(GCCFLAGS) $(DEBUG) -O -DCHAR_SIZE=$(CHAR_SIZE)
++CFLAGS?= -O
++CFLAGS+= $(GCCFLAGS) $(DEBUG) -DCHAR_SIZE=$(CHAR_SIZE)
+ LDFLAGS= $(DEBUG)
+
+ # You may well have to change this line. Just "LIBS=" will probably work.