aboutsummaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authortomas <tomas>2007-05-15 12:58:35 +0000
committertomas <tomas>2007-05-15 12:58:35 +0000
commit7ee2d8e1b24a0ae3f671fc852e42301c017f0576 (patch)
tree08fef0ff940680741c17c8d905ec577ed06b094c /config
parent8033232c924123b670578a8cb13ec0843f4d65d3 (diff)
downloadluafilesystem-7ee2d8e1b24a0ae3f671fc852e42301c017f0576.tar.gz
luafilesystem-7ee2d8e1b24a0ae3f671fc852e42301c017f0576.tar.bz2
luafilesystem-7ee2d8e1b24a0ae3f671fc852e42301c017f0576.zip
Compilation bug fix: ISO C90 forbids mixed declarations and code
Diffstat (limited to 'config')
-rw-r--r--config4
1 files changed, 2 insertions, 2 deletions
diff --git a/config b/config
index 3dae91c..eca849d 100644
--- a/config
+++ b/config
@@ -11,9 +11,9 @@ LIB_OPTION= -shared #for Linux
11LIBNAME= $T.so.$V 11LIBNAME= $T.so.$V
12 12
13# Compilation directives 13# Compilation directives
14WARN= -O2 -Wall -fPIC -W -Waggregate-return -Wcast-align -Wmissing-prototypes -Wnested-externs -Wshadow -Wwrite-strings 14WARN= -O2 -Wall -fPIC -W -Waggregate-return -Wcast-align -Wmissing-prototypes -Wnested-externs -Wshadow -Wwrite-strings -pedantic
15INCS= -I$(LUA_INC) 15INCS= -I$(LUA_INC)
16CFLAGS= $(WARN) $(INCS) 16CFLAGS= $(WARN) $(INCS)
17CC= gcc 17CC= gcc
18 18
19# $Id: config,v 1.18 2006/12/15 18:04:50 mascarenhas Exp $ 19# $Id: config,v 1.19 2007/05/15 12:58:35 tomas Exp $