diff options
author | Lorry Tar Creator <lorry-tar-importer@baserock.org> | 2013-03-14 05:42:27 +0000 |
---|---|---|
committer | <> | 2013-04-03 16:25:08 +0000 |
commit | c4dd7a1a684490673e25aaf4fabec5df138854c4 (patch) | |
tree | 4d57c44caae4480efff02b90b9be86f44bf25409 /ext/sqlite3/libsqlite/php-sqlite3-changes.patch | |
download | php2-master.tar.gz |
Imported from /home/lorry/working-area/delta_php2/php-5.4.13.tar.bz2.HEADphp-5.4.13master
Diffstat (limited to 'ext/sqlite3/libsqlite/php-sqlite3-changes.patch')
-rw-r--r-- | ext/sqlite3/libsqlite/php-sqlite3-changes.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ext/sqlite3/libsqlite/php-sqlite3-changes.patch b/ext/sqlite3/libsqlite/php-sqlite3-changes.patch new file mode 100644 index 0000000..c97de1b --- /dev/null +++ b/ext/sqlite3/libsqlite/php-sqlite3-changes.patch @@ -0,0 +1,18 @@ +--- sqlite3.c.orig 2011-04-17 10:54:01.000000000 -0700 ++++ sqlite3.c 2011-05-12 22:57:02.000000000 -0700 +@@ -1,3 +1,7 @@ ++#if defined(_MSC_VER) && _MSC_VER < 1300 ++#pragma optimize("", off) ++#endif ++ + /****************************************************************************** + ** This file is an amalgamation of many separate C source files from SQLite + ** version 3.7.6.2. By combining all the individual C code files into this +@@ -125956,3 +125960,7 @@ + #endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) */ + + /************** End of fts3_icu.c ********************************************/ ++ ++#if defined(_MSC_VER) && _MSC_VER < 1300 ++#pragma optimize("", on) ++#endif |