Skip to content

Commit ff64398

Browse files
committed
remove the customizations that were merged in with the project file changes we made on the ditto branch
1 parent 1d437e4 commit ff64398

2 files changed

Lines changed: 0 additions & 4 deletions

File tree

sqlcipher.xcodeproj/project.pbxproj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,6 @@
192192
HEADER_SEARCH_PATHS = (
193193
"$(PROJECT_DIR)",
194194
"$(OPENSSL_SRC)/include",
195-
"$(DITTO_SRC)",
196195
);
197196
INSTALL_PATH = /usr/local/lib;
198197
OTHER_CFLAGS = (
@@ -215,7 +214,6 @@
215214
HEADER_SEARCH_PATHS = (
216215
"$(PROJECT_DIR)",
217216
"$(OPENSSL_SRC)/include",
218-
"$(DITTO_SRC)",
219217
);
220218
INSTALL_PATH = /usr/local/lib;
221219
OTHER_CFLAGS = (

src/func.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1418,14 +1418,12 @@ static void groupConcatFinalize(sqlite3_context *context){
14181418
** of the built-in functions above are part of the global function set.
14191419
** This routine only deals with those that are not global.
14201420
*/
1421-
#include "ditto_funcs.c"
14221421
void sqlite3RegisterBuiltinFunctions(sqlite3 *db){
14231422
int rc = sqlite3_overload_function(db, "MATCH", 2);
14241423
assert( rc==SQLITE_NOMEM || rc==SQLITE_OK );
14251424
if( rc==SQLITE_NOMEM ){
14261425
db->mallocFailed = 1;
14271426
}
1428-
#include "ditto_globals.c"
14291427
}
14301428

14311429
/*

0 commit comments

Comments
 (0)