mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
59dc9e23d0
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>
18 lines
468 B
Plaintext
18 lines
468 B
Plaintext
--- 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)
|