aboutsummaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorDiego Nehab <diego@tecgraf.puc-rio.br>2005-11-20 07:20:26 +0000
committerDiego Nehab <diego@tecgraf.puc-rio.br>2005-11-20 07:20:26 +0000
commitf20f4889bfe5a02cd9b77868b90cc8042352176a (patch)
tree339e085e385190ea5f3a9246c3a790c45036c61c /config
parent087b4f865d861162eb32a4081bb7c2087688919a (diff)
downloadluasocket-f20f4889bfe5a02cd9b77868b90cc8042352176a.tar.gz
luasocket-f20f4889bfe5a02cd9b77868b90cc8042352176a.tar.bz2
luasocket-f20f4889bfe5a02cd9b77868b90cc8042352176a.zip
Changed prefix of function names to match module names.
Removed some warnings and useless code.
Diffstat (limited to 'config')
-rw-r--r--config20
1 files changed, 10 insertions, 10 deletions
diff --git a/config b/config
index 255477b..175a885 100644
--- a/config
+++ b/config
@@ -37,20 +37,20 @@ INSTALL_EXEC=cp
37# Compiler and linker settings 37# Compiler and linker settings
38# for Mac OS X 38# for Mac OS X
39# 39#
40CC=gcc 40#CC=gcc
41DEF=-DLUASOCKET_DEBUG -DUNIX_HAS_SUN_LEN 41#DEF=-DLUASOCKET_DEBUG -DUNIX_HAS_SUN_LEN
42CFLAGS= $(LUAINC) -I$(COMPAT) $(DEF) -pedantic -Wall -O2 -fno-common 42#CFLAGS= $(LUAINC) -I$(COMPAT) $(DEF) -pedantic -Wall -O2 -fno-common
43LDFLAGS=-bundle -undefined dynamic_lookup 43#LDFLAGS=-bundle -undefined dynamic_lookup
44LD=export MACOSX_DEPLOYMENT_TARGET="10.3"; gcc 44#LD=export MACOSX_DEPLOYMENT_TARGET="10.3"; gcc
45 45
46#------ 46#------
47# Compiler and linker settings 47# Compiler and linker settings
48# for Linux 48# for Linux
49#CC=gcc 49CC=gcc
50#DEF=-DLUASOCKET_DEBUG 50DEF=-DLUASOCKET_DEBUG
51#CFLAGS= $(LUAINC) -I$(COMPAT) $(DEF) -pedantic -Wall -O2 -fpic 51CFLAGS= $(LUAINC) -I$(COMPAT) $(DEF) -pedantic -Wall -O2 -fpic
52#LDFLAGS=-O -shared 52LDFLAGS=-O -shared
53#LD=gcc 53LD=gcc
54 54
55#------ 55#------
56# End of makefile configuration 56# End of makefile configuration