Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(107)

Side by Side Diff: third_party/sqlite/google_generate_preprocessed.sh

Issue 387030: Revert the patch that makes SQLite interpret BEGIN as BEGIN IMMEDIATE,... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Final version. Had to sync README.chromium. Created 11 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/sqlite/README.chromium ('k') | third_party/sqlite/misc.patch » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 # 2 #
3 # Copyright 2007 Google Inc. All Rights Reserved. 3 # Copyright 2007 Google Inc. All Rights Reserved.
4 # Author: shess@google.com (Scott Hess) 4 # Author: shess@google.com (Scott Hess)
5 5
6 mkdir bld 6 mkdir bld
7 cd bld 7 cd bld
8 ../configure 8 ../configure
9 FILES="keywordhash.h opcodes.c opcodes.h parse.c parse.h sqlite3.h" 9 FILES="keywordhash.h opcodes.c opcodes.h parse.c parse.h sqlite3.h"
10 OPTS="" 10 OPTS=""
11 # These options should match those in ../../tools/config.mk. 11 # These options should match those in ../../tools/config.mk.
12 OPTS="$OPTS -DSQLITE_OMIT_LOAD_EXTENSION=1" 12 OPTS="$OPTS -DSQLITE_OMIT_LOAD_EXTENSION=1"
13 OPTS="$OPTS -DSQLITE_TRANSACTION_DEFAULT_IMMEDIATE=1"
14 make "OPTS=$OPTS" $FILES 13 make "OPTS=$OPTS" $FILES
15 cp -f $FILES ../preprocessed 14 cp -f $FILES ../preprocessed
16 15
17 cd .. 16 cd ..
18 rm -rf bld 17 rm -rf bld
19 18
20 # TODO(shess) I can't find config.h, which exists in the original 19 # TODO(shess) I can't find config.h, which exists in the original
21 # third_party/sqlite/ directory. I also haven't found a client of it, 20 # third_party/sqlite/ directory. I also haven't found a client of it,
22 # yet, so maybe it's not a file we need. 21 # yet, so maybe it's not a file we need.
OLDNEW
« no previous file with comments | « third_party/sqlite/README.chromium ('k') | third_party/sqlite/misc.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698