diff options
author | pixel <pixel> | 2008-08-07 13:14:26 +0000 |
---|---|---|
committer | pixel <pixel> | 2008-08-07 13:14:26 +0000 |
commit | b5593a053617cabd699b8b3b3630dbef3df5b841 (patch) | |
tree | bbba0eba3cb6672ae0f31101efd73e91875757ac /Makefile.mingw32 | |
parent | 5deddd948e25b8cd27ced8c8ef38e5c072f961d3 (diff) |
Adding luasql to the list of the win32 ported modules.
Diffstat (limited to 'Makefile.mingw32')
-rw-r--r-- | Makefile.mingw32 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.mingw32 b/Makefile.mingw32 index eea0337..5511dbe 100644 --- a/Makefile.mingw32 +++ b/Makefile.mingw32 @@ -9,7 +9,7 @@ INCLUDES = \ -I../Baltisot/include \ -I../Baltisot/lib/lua/include -I../Baltisot/lib/lua/includes \ -I ../tinyxml \ --I /usr/include/mysql \ +-I ../mysql-5.0.51b-win32/include \ -I ../ftgl-win32/include -I ../freetype-win32/include/freetype2 \ -I /usr/include/oracle/11.1.0.1/client/ \ -I ../Baltisot/MSVC/regex \ @@ -17,7 +17,7 @@ INCLUDES = \ -I ../pthreads-w32-2-8-0-release/ \ -I ../gnuwin32/include/ImageMagick -HAVES = -DHAVE_VSSCANF -DHAVE_LIBJPEG -DHAVE_MALLOC_H -DHAVE_BYTESWAP_H -DUSE_OSMESA +HAVES = -DHAVE_VSSCANF -DHAVE_LIBJPEG -DHAVE_MALLOC_H -DHAVE_BYTESWAP_H -DUSE_OSMESA -DHAVE_MYSQL CPPFLAGS += $(INCLUDES) -g -DSTDC_HEADERS -DREADLINE_STATIC -DHOOK_STDS -DWORDS_LITTLEENDIAN -fexceptions -march=i686 $(HAVES) @@ -78,7 +78,7 @@ plugin-luasql.cc \ SQL.cc \ LuaSQL.cc \ -SQL_LIBS = /usr/lib/libmysqlclient.a +SQL_LIBS = ../mysql-5.0.51b-win32/lib/libmySQL.a LUALIBS_SOURCES = \ plugin-lualibs.cc \ @@ -121,10 +121,10 @@ $(REGEX_SOURCES) \ $(GL_SOURCES) \ $(FTGL_SOURCES) \ $(OSMESA_SOURCES) \ +$(SQL_SOURCES) \ #$(OCCI_SOURCES) \ -#$(SQL_SOURCES) \ MODULES_LIST = \ luaconfigfiles.dll \ @@ -137,10 +137,10 @@ luaregex.dll \ luagl.dll \ luaftgl.dll \ luaosmesa.dll \ +luasql.dll \ #luaocci.dll \ -#luasql.dll \ ALL_OBJECTS = $(addsuffix .o, $(notdir $(basename $(WHOLE_SOURCES) $(LUA_LIB)))) ALL_DEPS = $(addsuffix .dep, $(notdir $(basename $(WHOLE_SOURCES)))) |