aboutsummaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config7
1 files changed, 6 insertions, 1 deletions
diff --git a/config b/config
index 5bbd47a..9958952 100644
--- a/config
+++ b/config
@@ -9,6 +9,11 @@ LIB_OPTION= -shared #for Linux
9#LIB_OPTION= -bundle -undefined dynamic_lookup #for MacOS X 9#LIB_OPTION= -bundle -undefined dynamic_lookup #for MacOS X
10 10
11LIBNAME= $T.so.$V 11LIBNAME= $T.so.$V
12# Lua version number
13# (according to Lua 5.1 definition:
14# first version digit * 100 + second version digit
15# e.g. Lua 5.0.2 => 500, Lua 5.1 => 501, Lua 5.1.1 => 501)
16LUA_VERSION_NUM= 500
12COMPAT_DIR= ../compat/src 17COMPAT_DIR= ../compat/src
13 18
14# Compilation directives 19# Compilation directives
@@ -17,4 +22,4 @@ INCS= -I$(LUA_INC) -I$(COMPAT_DIR)
17CFLAGS= $(WARN) $(INCS) 22CFLAGS= $(WARN) $(INCS)
18CC= gcc 23CC= gcc
19 24
20# $Id: config,v 1.14 2005/06/24 01:49:16 tomas Exp $ 25# $Id: config,v 1.15 2006/06/08 16:23:25 tomas Exp $