1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-07 06:40:06 +00:00
freebsd-ports/textproc/rxp/files/patch-aa
Kris Kennaway d10957ba29 Switch to using a versioned distfile - the non-versioned one currently
points to a newer beta release.  Respect CFLAGS and bump PORTREVISION.
2001-03-10 04:59:24 +00:00

16 lines
405 B
Plaintext

--- 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.