wez             Tue May 25 09:01:06 2004 EDT

  Modified files:              
    /php-src/ext/sqlite config.w32 
  Log:
  Allow sqlite to build as a shared ext under win32
  
  
http://cvs.php.net/diff.php/php-src/ext/sqlite/config.w32?r1=1.4&r2=1.5&ty=u
Index: php-src/ext/sqlite/config.w32
diff -u php-src/ext/sqlite/config.w32:1.4 php-src/ext/sqlite/config.w32:1.5
--- php-src/ext/sqlite/config.w32:1.4   Thu Jan  8 11:18:37 2004
+++ php-src/ext/sqlite/config.w32       Tue May 25 09:01:05 2004
@@ -1,9 +1,9 @@
-// $Id: config.w32,v 1.4 2004/01/08 16:18:37 wez Exp $
+// $Id: config.w32,v 1.5 2004/05/25 13:01:05 wez Exp $
 // vim:ft=javascript
 
 ARG_WITH("sqlite", "SQLite support", "yes");
 
-if (PHP_SQLITE == "yes") {
+if (PHP_SQLITE != "no") {
        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"), ""),

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to