Scott MacVicar kirjoitti:
scottmac                Thu Jul 31 22:24:05 2008 UTC

  Modified files:              (Branch: PHP_5_3)
/php-src/ext/sqlite3 config.m4 php_sqlite3.h Log:
  Enable by default and fix compile error
http://cvs.php.net/viewvc.cgi/php-src/ext/sqlite3/config.m4?r1=1.1.2.5&r2=1.1.2.6&diff_format=u
Index: php-src/ext/sqlite3/config.m4
diff -u php-src/ext/sqlite3/config.m4:1.1.2.5 
php-src/ext/sqlite3/config.m4:1.1.2.6
--- php-src/ext/sqlite3/config.m4:1.1.2.5       Sat Jul 26 23:42:53 2008
+++ php-src/ext/sqlite3/config.m4       Thu Jul 31 22:24:05 2008
@@ -1,10 +1,10 @@
-dnl $Id: config.m4,v 1.1.2.5 2008/07/26 23:42:53 jani Exp $
+dnl $Id: config.m4,v 1.1.2.6 2008/07/31 22:24:05 scottmac Exp $
 dnl config.m4 for extension sqlite3
 dnl vim:et:ts=2:sw=2
PHP_ARG_WITH(sqlite3, whether to enable the SQLite3 extension,
 [  --with-sqlite3[=DIR]    Include SQLite3 support. DIR is the prefix to

--without-sqlite3..           Do not include..

And make sure you don't break the indentation of ./configure --help :)

--Jani


-                          SQLite3 installation directory.], no)
+                          SQLite3 installation directory.], yes)
if test $PHP_SQLITE3 != "no"; then
   sqlite3_extra_sources=""
http://cvs.php.net/viewvc.cgi/php-src/ext/sqlite3/php_sqlite3.h?r1=1.1.2.4&r2=1.1.2.5&diff_format=u
Index: php-src/ext/sqlite3/php_sqlite3.h
diff -u php-src/ext/sqlite3/php_sqlite3.h:1.1.2.4 
php-src/ext/sqlite3/php_sqlite3.h:1.1.2.5
--- php-src/ext/sqlite3/php_sqlite3.h:1.1.2.4   Mon Jul 28 11:59:35 2008
+++ php-src/ext/sqlite3/php_sqlite3.h   Thu Jul 31 22:24:05 2008
@@ -16,10 +16,10 @@
    +----------------------------------------------------------------------+
 */
-/* $Id: php_sqlite3.h,v 1.1.2.4 2008/07/28 11:59:35 jani Exp $ */
+/* $Id: php_sqlite3.h,v 1.1.2.5 2008/07/31 22:24:05 scottmac Exp $ */
-#ifndef PHP_SQLITE_H
-#define PHP_SQLITE_H
+#ifndef PHP_SQLITE3_H
+#define PHP_SQLITE3_H
#define PHP_SQLITE3_VERSION "0.7-dev"




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

Reply via email to