Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: antab at uclibc.org <antab@uclibc.org>
To: buildroot@busybox.net
Subject: [Buildroot] svn commit: trunk/buildroot/package/php
Date: Sun,  1 Jun 2008 11:04:13 -0700 (PDT)	[thread overview]
Message-ID: <20080601180414.033A73C836@busybox.net> (raw)

Author: antab
Date: 2008-06-01 11:04:13 -0700 (Sun, 01 Jun 2008)
New Revision: 22164

Log:
Dump php to version 5.2.6 and add SimpleXML extension to config menu


Modified:
   trunk/buildroot/package/php/Config.ext
   trunk/buildroot/package/php/php.mk


Changeset:
Modified: trunk/buildroot/package/php/Config.ext
===================================================================
--- trunk/buildroot/package/php/Config.ext	2008-06-01 17:58:48 UTC (rev 22163)
+++ trunk/buildroot/package/php/Config.ext	2008-06-01 18:04:13 UTC (rev 22164)
@@ -29,19 +29,26 @@
 	  Session support
 
 config BR2_PACKAGE_PHP_EXT_OPENSSL
-        bool "openssl"
-        depends on BR2_PACKAGE_PHP && BR2_PACKAGE_OPENSSL
-        default n
-        help
-          openssl support
+	bool "openssl"
+	depends on BR2_PACKAGE_PHP && BR2_PACKAGE_OPENSSL
+	default n
+	help
+	  openssl support
 
 config BR2_PACKAGE_PHP_EXT_LIBXML2
-        bool "xml2"
-        depends on BR2_PACKAGE_PHP && BR2_PACKAGE_LIBXML2
-        default y
-        help
-          xml support
+	bool "xml2"
+	depends on BR2_PACKAGE_PHP && BR2_PACKAGE_LIBXML2
+	default y
+	help
+	  xml support
 
+config BR2_PACKAGE_PHP_EXT_SIMPLEXML
+	bool "simplexml"
+	depends on BR2_PACKAGE_PHP
+	select BR2_PACKAGE_PHP_EXIT_LIBXML2
+	help
+	  SimpleXML support
+
 config BR2_PACKAGE_PHP_EXT_ZLIB
         bool "zlib"
         depends on BR2_PACKAGE_PHP && BR2_PACKAGE_ZLIB

Modified: trunk/buildroot/package/php/php.mk
===================================================================
--- trunk/buildroot/package/php/php.mk	2008-06-01 17:58:48 UTC (rev 22163)
+++ trunk/buildroot/package/php/php.mk	2008-06-01 18:04:13 UTC (rev 22164)
@@ -3,7 +3,7 @@
 # php
 #
 #############################################################
-PHP_VER:=5.2.5
+PHP_VER:=5.2.6
 PHP_SOURCE:=php-$(PHP_VER).tar.bz2
 PHP_SITE:=http://us.php.net/get/${PHP_SOURCE}/from/us2.php.net/mirror
 PHP_DIR:=$(BUILD_DIR)/php-$(PHP_VER)
@@ -58,6 +58,9 @@
 		 --enable-xmlwriter
 	PHP_DEPS+=libxml2
 endif
+ifeq ($(BR2_PACKAGE_PHP_EXT_SIMPLEXML),y)
+	PHP_CONFIGURE+=--enable-simplexml
+endif
 ifeq ($(BR2_PACKAGE_PHP_EXT_ZLIB),y)
 	PHP_CONFIGURE+=--with-zlib=$(STAGING_DIR)/usr
 	PHP_DEPS+=zlib
@@ -105,20 +108,20 @@
 
 ### Database extensions
 ifeq ($(BR2_PACKAGE_PHP_EXT_SQLITE),y)
-	PHP_CONFIGURE+=--with-sql
+	PHP_CONFIGURE+=--with-sqlite
 ifeq ($(BR2_PACKAGE_PHP_EXT_SQLITE_UTF8),y)
 	PHP_CONFIGURE+=--enable-sqlite-utf8
 endif
 endif
 ifeq ($(BR2_PACKAGE_PHP_EXT_PDO),y)
+	PHP_CONFIGURE+=--enable-pdo
 ifeq ($(BR2_PACKAGE_PHP_EXT_PDO_SQLITE),y)
 	PHP_CONFIGURE+=--with-pdo-sqlite
 endif
 ifeq ($(BR2_PACKAGE_PHP_EXT_PDO_MYSQL),y)
-	PHP_CONFIGURE+=--with-pdo-mysql
+	PHP_CONFIGURE+=--with-pdo-mysql=$(STAGING_DIR)/usr
+	PHP_DEPS+=mysql_client
 endif
-else
-	PHP_CONFIGURE+=--without-pdo-sqlite
 endif
 
 $(DL_DIR)/$(PHP_SOURCE):

             reply	other threads:[~2008-06-01 18:04 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-06-01 18:04 antab at uclibc.org [this message]
2008-06-01 19:31 ` [Buildroot] svn commit: trunk/buildroot/package/php Peter Korsgaard
2008-06-02 12:11 ` Peter Korsgaard
2008-06-02 13:15   ` Gustavo Zacarias
  -- strict thread matches above, loose matches on Subject: below --
2009-03-04 20:58 jacmet at uclibc.org
2009-03-04 20:58 jacmet at uclibc.org
2009-03-02 19:05 jacmet at uclibc.org
2009-02-25 19:51 jacmet at uclibc.org
2009-02-21  9:06 jacmet at uclibc.org
2009-02-21  9:06 jacmet at uclibc.org
2009-02-20 21:55 jacmet at uclibc.org
2009-02-20 15:13 jacmet at uclibc.org
2009-01-25 20:59 ulf at uclibc.org
2009-01-11 20:08 ulf at uclibc.org
2008-12-13 11:01 tpetazzoni at uclibc.org
2008-06-16  9:49 jacmet at uclibc.org
2008-06-01 19:42 antab at uclibc.org
2008-03-25  8:49 jacmet at uclibc.org
2008-03-11 18:14 ninevoltz at uclibc.org
2008-03-06 18:21 ninevoltz at uclibc.org
2007-08-19 21:02 ulf at uclibc.org

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20080601180414.033A73C836@busybox.net \
    --to=antab@uclibc.org \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox