Updated to Sqlite 3.2.2.

This commit is contained in:
Johnny Bergström 2005-08-11 19:06:54 +00:00
parent a4a9613f5b
commit bf092b4f95
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
MODNAME = sqlite_amxx
SRCFILES = sqlite_amx.cpp sqlite.cpp amxxmodule.cpp
EXTRA_INCLUDEDIRS = -I../../amxmodx -Isqlite-source-3_1_2
EXTRA_INCLUDEDIRS = -I../../amxmodx -Isqlite-source-3_2_2
EXTRA_FLAGS = -Dstrcmpi=strcasecmp

View File

@ -15,7 +15,7 @@
$PROJECT = "sqlite_amxx";
$sdk = "../../hlsdk/SourceCode";
$mm = "../../metamod/metamod";
$sql = "sqlite-source-3_1_2";
$sql = "sqlite-source-3_2_2";
$gccf = "gcc";
@CPP_SOURCE_FILES = ("sqlite.cpp", "sqlite_amx.cpp", "amxxmodule.cpp");
@ -24,8 +24,8 @@ $gccf = "gcc";
my %OPTIONS, %OPT;
$OPT{"debug"} = "-g -ggdb";
$OPT{"opt"} = "-O2 -ffast-math -funroll-loops -fomit-frame-pointer -s -DNDEBUG -Wall -Wno-unknown-pragmas -DOPT_TYPE=\"optimized\" -fno-exceptions -fno-rtti";
$OPT{"debug"} = "-DNO_TCL -g -ggdb";
$OPT{"opt"} = "-DNO_TCL -O2 -ffast-math -funroll-loops -fomit-frame-pointer -s -DNDEBUG -Wall -Wno-unknown-pragmas -DOPT_TYPE=\"optimized\" -fno-exceptions -fno-rtti";
$OPTIONS{"include"} = "-I$sdk -I. -I$mm -I$sdk/engine -I$sdk/common -I$sdk/pm_shared -I$sdk/dlls -I$sql";