diff options
author | kris <kris@FreeBSD.org> | 1999-04-30 22:09:59 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 1999-04-30 22:09:59 +0800 |
commit | c12ea2d8d7b693f10558b6d2436439e73f17ceed (patch) | |
tree | efe79c5daa315a807fe97e92753621a5b576cac0 /lang/nawk/files | |
parent | 3adb03eb8471245a0564dee9f8a1a740bd939592 (diff) | |
download | freebsd-ports-gnome-c12ea2d8d7b693f10558b6d2436439e73f17ceed.tar.gz freebsd-ports-gnome-c12ea2d8d7b693f10558b6d2436439e73f17ceed.tar.zst freebsd-ports-gnome-c12ea2d8d7b693f10558b6d2436439e73f17ceed.zip |
Update to 990416 version.
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
Diffstat (limited to 'lang/nawk/files')
-rw-r--r-- | lang/nawk/files/patch-aa | 56 |
1 files changed, 25 insertions, 31 deletions
diff --git a/lang/nawk/files/patch-aa b/lang/nawk/files/patch-aa index 182ca8242cda..6743323390ba 100644 --- a/lang/nawk/files/patch-aa +++ b/lang/nawk/files/patch-aa @@ -1,31 +1,25 @@ -*** makefile.orig Tue Oct 20 08:48:03 1998 ---- makefile Wed Jan 13 19:10:37 1999 -*************** -*** 22,34 **** - # THIS SOFTWARE. - # ****************************************************************/ - -! CFLAGS = -g -! CFLAGS = -O -! CC = gcc -Wall -g -! CC = purify cc -! CC = cc - -! YACC = bison -y - YACC = yacc - YFLAGS = -d - ---- 22,34 ---- - # THIS SOFTWARE. - # ****************************************************************/ - -! #CFLAGS = -g -! CFLAGS ?= -O -! #CC = gcc -Wall -g -! #CC = purify cc -! CC ?= cc - -! #YACC = bison -y - YACC = yacc - YFLAGS = -d - +--- 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 + |