compile with SQLITE_TEMP_STORE=2 to use memory temp store by default

This commit is contained in:
Stephen Lombardo 2009-06-23 11:55:26 -04:00
parent 0acb34a113
commit 135ac7be93

View File

@ -146,7 +146,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "./configure CFLAGS=\"-DSQLITE_HAS_CODEC\"\nmake sqlite3.c\nexit 0";
shellScript = "./configure CFLAGS=\"-DSQLITE_HAS_CODEC -DSQLITE_TEMP_STORE=2\"\nmake sqlite3.c\nexit 0";
};
/* End PBXShellScriptBuildPhase section */
@ -185,6 +185,7 @@
"-DSQLITE_HAS_CODEC",
"-DNDEBUG",
"-DSQLITE_OS_UNIX=1",
"-DSQLITE_TEMP_STORE=2",
);
OTHER_LDFLAGS = "";
PRODUCT_NAME = sqlcipher;
@ -203,6 +204,7 @@
"-DSQLITE_HAS_CODEC",
"-DNDEBUG",
"-DSQLITE_OS_UNIX=1",
"-DSQLITE_TEMP_STORE=2",
);
OTHER_LDFLAGS = "";
PRODUCT_NAME = sqlcipher;