diff options
author | Chris Piazza <cpiazza@FreeBSD.org> | 1999-07-06 01:28:28 +0000 |
---|---|---|
committer | Chris Piazza <cpiazza@FreeBSD.org> | 1999-07-06 01:28:28 +0000 |
commit | 59dc9e23d04539a365808dea840c9755fa87dc30 (patch) | |
tree | c30fcce38931e4862623d82b764e7ecb6a25bab4 /lang/lua4/files/patch-aa | |
parent | 1e2b05a04245a530d236ce4bb4ea85d71da021ba (diff) |
Lua:
A programming language originally designed for extending applications,
but also frequently used as a general-purpose, stand-alone language. Lua
combines simple procedural syntax (similar to Pascal) with powerful data
description constructs based on associative arrays and extensible semantics.
PR: 12459
Submitted by: Richard Kiss <richard@homemail.com>
Notes
Notes:
svn path=/head/; revision=20090
Diffstat (limited to 'lang/lua4/files/patch-aa')
-rw-r--r-- | lang/lua4/files/patch-aa | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lang/lua4/files/patch-aa b/lang/lua4/files/patch-aa new file mode 100644 index 000000000000..101f1a83e236 --- /dev/null +++ b/lang/lua4/files/patch-aa @@ -0,0 +1,17 @@ +--- config.orig Tue Jul 6 18:17:42 1999 ++++ config Tue Jul 6 18:18:03 1999 +@@ -3,7 +3,7 @@ + # == CHANGE THE SETTINGS BELOW TO SUIT YOUR ENVIRONMENT ====================== + + # you need an ANSI C compiler. gcc is a popular one. +-CC= gcc ++CC?= gcc + WARN= -ansi -Wall + + # on SGI's, cc is ANSI. +@@ -51,4 +51,4 @@ + INCS= -I$(INC) $(EXTRA_INCS) + DEFS= $(COMPAT) $(NUMBER) $(OLD_ANSI) $(EXTRA_DEFS) + +-CFLAGS= -O2 $(WARN) $(INCS) $(DEFS) ++CFLAGS+= $(WARN) $(INCS) $(DEFS) |