mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
bdb0f6273c
Some commentary from Mr. bwk: Mar 5, 1999: after hearing from yet another innocent victim, changed isnumber to is_number to avoid the problem caused by freeBSD gratuitously and incorrectly including the name isnumber in the standard header file ctype.h. Prompted by: bento
26 lines
425 B
Plaintext
26 lines
425 B
Plaintext
--- makefile.orig Tue Apr 6 11:54:42 1999
|
|
+++ makefile Fri Apr 30 23:29:43 1999
|
|
@@ -22,15 +22,15 @@
|
|
# THIS SOFTWARE.
|
|
# ****************************************************************/
|
|
|
|
-CFLAGS = -g
|
|
-CFLAGS = -O2
|
|
-CFLAGS =
|
|
+#CFLAGS = -g
|
|
+CFLAGS ?= -O2
|
|
+#CFLAGS =
|
|
|
|
-CC = gcc -Wall -g
|
|
-CC = purify cc
|
|
-CC = cc
|
|
+CC ?= gcc -Wall -g
|
|
+#CC = purify cc
|
|
+#CC = cc
|
|
|
|
-YACC = bison -y
|
|
+#YACC = bison -y
|
|
YACC = yacc
|
|
YFLAGS = -d
|
|
|