summaryrefslogtreecommitdiff
path: root/lang/lua50/files/patch-aa
diff options
context:
space:
mode:
authorChris Piazza <cpiazza@FreeBSD.org>1999-07-06 01:28:28 +0000
committerChris Piazza <cpiazza@FreeBSD.org>1999-07-06 01:28:28 +0000
commit59dc9e23d04539a365808dea840c9755fa87dc30 (patch)
treec30fcce38931e4862623d82b764e7ecb6a25bab4 /lang/lua50/files/patch-aa
parentUpdate to tidy2july99 (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/lua50/files/patch-aa')
-rw-r--r--lang/lua50/files/patch-aa17
1 files changed, 17 insertions, 0 deletions
diff --git a/lang/lua50/files/patch-aa b/lang/lua50/files/patch-aa
new file mode 100644
index 000000000000..101f1a83e236
--- /dev/null
+++ b/lang/lua50/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)