summaryrefslogtreecommitdiff
path: root/ext/sqlite/config.w32
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2004-01-25 12:03:25 +0000
committerSVN Migration <svn@php.net>2004-01-25 12:03:25 +0000
commit22476b36ce621bdd115493bab84cbe706e422a7c (patch)
tree1124d1c5af68860a78c2252bb0dac63c9f18156e /ext/sqlite/config.w32
parenteb7aca4ea896b09cb9afc2466a46f4720acc4a4e (diff)
downloadphp-git-php_ibase_before_split.tar.gz
This commit was manufactured by cvs2svn to create tagphp_ibase_before_split
'php_ibase_before_split'.
Diffstat (limited to 'ext/sqlite/config.w32')
-rw-r--r--ext/sqlite/config.w3232
1 files changed, 0 insertions, 32 deletions
diff --git a/ext/sqlite/config.w32 b/ext/sqlite/config.w32
deleted file mode 100644
index 2441ab916c..0000000000
--- a/ext/sqlite/config.w32
+++ /dev/null
@@ -1,32 +0,0 @@
-// $Id$
-// vim:ft=javascript
-
-ARG_WITH("sqlite", "SQLite support", "yes");
-
-if (PHP_SQLITE == "yes") {
- copy_and_subst(configure_module_dirname + "\\libsqlite\\src\\sqlite.h.in",
- configure_module_dirname + "\\libsqlite\\src\\sqlite.h", new Array(
- "--VERS--", file_get_contents(configure_module_dirname + "\\libsqlite\\VERSION").replace(new RegExp("[\r\n]+", "g"), ""),
- "--ENCODING--", "ISO8859"
- ));
-
- FSO.CopyFile(configure_module_dirname + "\\libsqlite\\src\\sqlite_config.w32.h",
- configure_module_dirname + "\\libsqlite\\src\\config.h");
-
- EXTENSION("sqlite", "sqlite.c sess_sqlite.c", null,
- "/D PHP_SQLITE_EXPORTS /I " + configure_module_dirname + "/libsqlite/src");
-
-
- ADD_SOURCES(configure_module_dirname + "/libsqlite/src", "opcodes.c parse.c encode.c \
- auth.c btree.c build.c delete.c expr.c func.c hash.c insert.c \
- main.c os.c pager.c printf.c random.c select.c table.c tokenize.c \
- update.c util.c vdbe.c attach.c btree_rb.c pragma.c vacuum.c \
- copy.c where.c trigger.c vdbeaux.c date.c", "sqlite");
-
- AC_DEFINE("HAVE_SQLITE", 1, "SQLite support");
- if (!PHP_SQLITE_SHARED) {
- ADD_DEF_FILE(configure_module_dirname + "\\php_sqlite.def");
- }
-}
-
-