diff options
author | cpiazza <cpiazza@FreeBSD.org> | 1999-07-06 09:28:28 +0800 |
---|---|---|
committer | cpiazza <cpiazza@FreeBSD.org> | 1999-07-06 09:28:28 +0800 |
commit | d6ffb6a13b21f671019895bb5c6c72cfea95c095 (patch) | |
tree | c452e7a2914a83876c3351f252cc5def0a6c003f /lang/lua50/files | |
parent | 9a817b547fe90e537c56827404d82900039439f0 (diff) | |
download | freebsd-ports-gnome-d6ffb6a13b21f671019895bb5c6c72cfea95c095.tar.gz freebsd-ports-gnome-d6ffb6a13b21f671019895bb5c6c72cfea95c095.tar.zst freebsd-ports-gnome-d6ffb6a13b21f671019895bb5c6c72cfea95c095.zip |
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>
Diffstat (limited to 'lang/lua50/files')
-rw-r--r-- | lang/lua50/files/patch-aa | 17 |
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) |