OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Christoph Schug
Root: /v/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-src Date: 12-Apr-2007 09:55:52
Branch: HEAD Handle: 2007041208555001
Modified files:
openpkg-src/apache apache.spec
openpkg-src/php php.spec
Log:
added PHP SimpleXML support
Summary:
Revision Changes Path
1.394 +13 -1 openpkg-src/apache/apache.spec
1.148 +13 -1 openpkg-src/php/php.spec
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-src/apache/apache.spec
============================================================================
$ cvs diff -u -r1.393 -r1.394 apache.spec
--- openpkg-src/apache/apache.spec 11 Apr 2007 06:41:37 -0000 1.393
+++ openpkg-src/apache/apache.spec 12 Apr 2007 07:55:51 -0000 1.394
@@ -68,7 +68,7 @@
Group: Web
License: ASF
Version: %{V_apache}
-Release: 20070411
+Release: 20070412
# package options (suexec related)
%option with_suexec yes
@@ -141,6 +141,7 @@
%option with_mod_php_pcre no
%option with_mod_php_pgsql no
%option with_mod_php_sendmail no
+%option with_mod_php_simplexml no
%option with_mod_php_snmp no
%option with_mod_php_sqlite no
%option with_mod_php_ssl no
@@ -378,6 +379,10 @@
BuildPreReq: MTA
PreReq: MTA
%endif
+%if "%{with_mod_php_simplexml}" == "yes"
+BuildPreReq: libxml
+PreReq: libxml
+%endif
%if "%{with_mod_php_snmp}" == "yes"
BuildPreReq: snmp
PreReq: snmp
@@ -875,6 +880,13 @@
--with-imap=%{l_prefix} \
--with-imap-ssl=%{l_prefix} \
%endif
+%if "%{with_mod_php_simplexml}" == "yes"
+ --enable-simplexml \
+ --enable-libxml \
+ --with-libxml-dir=%{l_prefix} \
+%else
+ --disable-simplexml \
+%endif
%if "%{with_mod_php_xml}" == "yes"
--enable-xml \
--enable-libxml \
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/php/php.spec
============================================================================
$ cvs diff -u -r1.147 -r1.148 php.spec
--- openpkg-src/php/php.spec 6 Mar 2007 17:07:38 -0000 1.147
+++ openpkg-src/php/php.spec 12 Apr 2007 07:55:50 -0000 1.148
@@ -39,7 +39,7 @@
Group: Language
License: PHP
Version: %{V_php}
-Release: 20070306
+Release: 20070412
# package options
%option with_suhosin no
@@ -74,6 +74,7 @@
%option with_pear no
%option with_pgsql no
%option with_sendmail no
+%option with_simplexml no
%option with_snmp no
%option with_sqlite no
%option with_ssl no
@@ -233,6 +234,10 @@
BuildPreReq: MTA
PreReq: MTA
%endif
+%if "%{with_simplexml}" == "yes"
+BuildPreReq: libxml
+PreReq: libxml
+%endif
AutoReq: no
AutoReqProv: no
@@ -460,6 +465,13 @@
%else
--without-pear \
%endif
+%if "%{with_simplexml}" == "yes"
+ --enable-simplexml \
+ --enable-libxml \
+ --with-libxml-dir=%{l_prefix} \
+%else
+ --disable-simplexml \
+%endif
%if "%{with_snmp}" == "yes"
--with-snmp=%{l_prefix} \
--with-openssl-dir=%{l_prefix} \
@@ .
______________________________________________________________________
OpenPKG http://openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]