change config screen, fix build dependencies, make -mod-xml use expat instead of builtin xml impl, bump release number.

SVN-Revision: 1666
master
Nicolas Thill 19 years ago
parent 01e5bf33ff
commit 10be238e53
  1. 9
      openwrt/package/Makefile
  2. 64
      openwrt/package/php4/Config.in
  3. 61
      openwrt/package/php4/Makefile
  4. 2
      openwrt/package/php4/ipkg/php4-mod-xml.control

@ -105,7 +105,7 @@ package-$(BR2_PACKAGE_OPENVPN) += openvpn
package-$(BR2_PACKAGE_OSIRIS) += osiris package-$(BR2_PACKAGE_OSIRIS) += osiris
package-$(BR2_PACKAGE_PARPROUTED) += parprouted package-$(BR2_PACKAGE_PARPROUTED) += parprouted
package-$(BR2_PACKAGE_PCRE) += pcre package-$(BR2_PACKAGE_PCRE) += pcre
package-$(BR2_PACKAGE_PHP4) += php4 package-$(BR2_COMPILE_PHP4) += php4
package-$(BR2_PACKAGE_PICOCOM) += picocom package-$(BR2_PACKAGE_PICOCOM) += picocom
package-$(BR2_PACKAGE_PMACCT) += pmacct package-$(BR2_PACKAGE_PMACCT) += pmacct
package-$(BR2_PACKAGE_POPT) += popt package-$(BR2_PACKAGE_POPT) += popt
@ -250,6 +250,7 @@ ifeq ($(BR2_PACKAGE_OPENVPN_LZO),y)
openvpn-compile: lzo-compile openvpn-compile: lzo-compile
endif endif
php4-compile: openssl-compile zlib-compile
ifneq ($(BR2_PACKAGE_PHP4_MOD_GD),) ifneq ($(BR2_PACKAGE_PHP4_MOD_GD),)
php4-compile: libgd-compile libpng-compile php4-compile: libgd-compile libpng-compile
endif endif
@ -259,9 +260,6 @@ endif
ifneq ($(BR2_PACKAGE_PHP4_MOD_MYSQL),) ifneq ($(BR2_PACKAGE_PHP4_MOD_MYSQL),)
php4-compile: mysql-compile php4-compile: mysql-compile
endif endif
ifneq ($(BR2_PACKAGE_PHP4_MOD_OPENSSL),)
php4-compile: openssl-compile
endif
ifneq ($(BR2_PACKAGE_PHP4_MOD_PCRE),) ifneq ($(BR2_PACKAGE_PHP4_MOD_PCRE),)
php4-compile: pcre-compile php4-compile: pcre-compile
endif endif
@ -271,6 +269,9 @@ endif
ifneq ($(BR2_PACKAGE_PHP4_MOD_SQLITE),) ifneq ($(BR2_PACKAGE_PHP4_MOD_SQLITE),)
php4-compile: sqlite2-compile php4-compile: sqlite2-compile
endif endif
ifneq ($(BR2_PACKAGE_PHP4_MOD_XML),)
php4-compile: expat-compile
endif
pmacct-compile: libpcap-compile pmacct-compile: libpcap-compile
ifneq ($(BR2_PACKAGE_PMACCT_MYSQL),) ifneq ($(BR2_PACKAGE_PMACCT_MYSQL),)

@ -1,45 +1,64 @@
menu "php4 - Hypertext preprocessor" menu "php4 - PHP4 Hypertext preprocessor"
config BR2_PACKAGE_PHP4 config BR2_COMPILE_PHP4
prompt "php4 - Hypertext preprocessor"
bool bool
default n
depends BR2_PACKAGE_PHP4_CLI || BR2_PACKAGE_PHP4_CGI || BR2_PACKAGE_PHP4_FASTCGI depends BR2_PACKAGE_PHP4_CLI || BR2_PACKAGE_PHP4_CGI || BR2_PACKAGE_PHP4_FASTCGI
help
PHP is a widely-used general-purpose scripting language that is especially
suited for Web development and can be embedded into HTML.
http://www.php.net/
comment "Server API --"
config BR2_PACKAGE_PHP4_CLI config BR2_PACKAGE_PHP4_CLI
prompt "...-cli - PHP4 CLI (Command Line Interface)" prompt "...-cli - PHP4 CLI (Command Line Interface)"
tristate tristate
# default m if CONFIG_DEVEL # default m if CONFIG_DEVEL
select BR2_PACKAGE_PHP4 select BR2_COMPILE_PHP4
select BR2_PACKAGE_LIBOPENSSL
select BR2_PACKAGE_ZLIB
help
PHP is a widely-used general-purpose scripting language that is especially
suited for Web development and can be embedded into HTML.
http://www.php.net/
config BR2_PACKAGE_PHP4_CGI config BR2_PACKAGE_PHP4_CGI
prompt "...-cgi - PHP4 built for CGI" prompt "...-cgi - PHP4 built for CGI"
tristate tristate
# default m if CONFIG_DEVEL # default m if CONFIG_DEVEL
select BR2_PACKAGE_PHP4 select BR2_COMPILE_PHP4
select BR2_PACKAGE_LIBOPENSSL
select BR2_PACKAGE_ZLIB
help
PHP is a widely-used general-purpose scripting language that is especially
suited for Web development and can be embedded into HTML.
http://www.php.net/
config BR2_PACKAGE_PHP4_FASTCGI config BR2_PACKAGE_PHP4_FASTCGI
prompt "...-fastcgi - PHP4 built for FastCGI" prompt "...-fastcgi - PHP4 built for FastCGI"
tristate tristate
# default m if CONFIG_DEVEL # default m if CONFIG_DEVEL
select BR2_PACKAGE_PHP4 select BR2_COMPILE_PHP4
select BR2_PACKAGE_LIBOPENSSL
select BR2_PACKAGE_ZLIB
help
PHP is a widely-used general-purpose scripting language that is especially
suited for Web development and can be embedded into HTML.
http://www.php.net/
comment "Extensions --"
config BR2_PACKAGE_PHP4_MOD_FTP config BR2_PACKAGE_PHP4_MOD_FTP
prompt "...-mod-ftp - FTP module" prompt "...-mod-ftp - FTP module"
tristate tristate
# default m if CONFIG_DEVEL # default m if CONFIG_DEVEL
depends BR2_PACKAGE_PHP4 depends BR2_COMPILE_PHP4
config BR2_PACKAGE_PHP4_MOD_GD config BR2_PACKAGE_PHP4_MOD_GD
prompt "...-mod-gd - GD graphics library module" prompt "...-mod-gd - GD graphics library module"
tristate tristate
# default m if CONFIG_DEVEL # default m if CONFIG_DEVEL
depends BR2_PACKAGE_PHP4 depends BR2_COMPILE_PHP4
select BR2_PACKAGE_LIBGD select BR2_PACKAGE_LIBGD
select BR2_PACKAGE_LIBPNG select BR2_PACKAGE_LIBPNG
@ -47,60 +66,61 @@ config BR2_PACKAGE_PHP4_MOD_LDAP
prompt "...-mod-ldap - LDAP module" prompt "...-mod-ldap - LDAP module"
tristate tristate
# default m if CONFIG_DEVEL # default m if CONFIG_DEVEL
depends BR2_PACKAGE_PHP4 depends BR2_COMPILE_PHP4
select BR2_PACKAGE_LIBOPENLDAP select BR2_PACKAGE_LIBOPENLDAP
config BR2_PACKAGE_PHP4_MOD_MYSQL config BR2_PACKAGE_PHP4_MOD_MYSQL
prompt "...-mod-mysql - MySQL module" prompt "...-mod-mysql - MySQL module"
tristate tristate
# default m if CONFIG_DEVEL # default m if CONFIG_DEVEL
depends BR2_PACKAGE_PHP4 depends BR2_COMPILE_PHP4
select BR2_PACKAGE_LIBMYSQLCLIENT select BR2_PACKAGE_LIBMYSQLCLIENT
config BR2_PACKAGE_PHP4_MOD_OPENSSL config BR2_PACKAGE_PHP4_MOD_OPENSSL
prompt "...-mod-openssl - OpenSSL module" prompt "...-mod-openssl - OpenSSL module"
tristate tristate
# default m if CONFIG_DEVEL # default m if CONFIG_DEVEL
depends BR2_PACKAGE_PHP4 depends BR2_COMPILE_PHP4
select BR2_PACKAGE_LIBOPENSSL select BR2_PACKAGE_LIBOPENSSL
config BR2_PACKAGE_PHP4_MOD_PCRE config BR2_PACKAGE_PHP4_MOD_PCRE
prompt "...-mod-pcre - PCRE module" prompt "...-mod-pcre - PCRE module"
tristate tristate
# default m if CONFIG_DEVEL # default m if CONFIG_DEVEL
depends BR2_PACKAGE_PHP4 depends BR2_COMPILE_PHP4
select BR2_PACKAGE_LIBPCRE select BR2_PACKAGE_LIBPCRE
config BR2_PACKAGE_PHP4_MOD_PGSQL config BR2_PACKAGE_PHP4_MOD_PGSQL
prompt "...-mod-pgsql - PostgreSQL module" prompt "...-mod-pgsql - PostgreSQL module"
tristate tristate
# default m if CONFIG_DEVEL # default m if CONFIG_DEVEL
depends BR2_PACKAGE_PHP4 depends BR2_COMPILE_PHP4
select BR2_PACKAGE_LIBPQ select BR2_PACKAGE_LIBPQ
config BR2_PACKAGE_PHP4_MOD_SESSION config BR2_PACKAGE_PHP4_MOD_SESSION
prompt "...-mod-session - Sessions module" prompt "...-mod-session - Sessions module"
tristate tristate
# default m if CONFIG_DEVEL # default m if CONFIG_DEVEL
depends BR2_PACKAGE_PHP4 depends BR2_COMPILE_PHP4
config BR2_PACKAGE_PHP4_MOD_SQLITE config BR2_PACKAGE_PHP4_MOD_SQLITE
prompt "...-mod-sqlite - SQLite module" prompt "...-mod-sqlite - SQLite module"
tristate tristate
# default m if CONFIG_DEVEL # default m if CONFIG_DEVEL
depends BR2_PACKAGE_PHP4 depends BR2_COMPILE_PHP4
select BR2_PACKAGE_LIBSQLITE2 select BR2_PACKAGE_LIBSQLITE2
config BR2_PACKAGE_PHP4_MOD_SOCKETS config BR2_PACKAGE_PHP4_MOD_SOCKETS
prompt "...-mod-sockets - Sockets module" prompt "...-mod-sockets - Sockets module"
tristate tristate
# default m if CONFIG_DEVEL # default m if CONFIG_DEVEL
depends BR2_PACKAGE_PHP4 depends BR2_COMPILE_PHP4
config BR2_PACKAGE_PHP4_MOD_XML config BR2_PACKAGE_PHP4_MOD_XML
prompt "...-mod-xml - XML module" prompt "...-mod-xml - XML module"
tristate tristate
# default m if CONFIG_DEVEL # default m if CONFIG_DEVEL
depends BR2_PACKAGE_PHP4 depends BR2_COMPILE_PHP4
select BR2_PACKAGE_LIBEXPAT
endmenu endmenu

@ -4,14 +4,14 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=php PKG_NAME:=php
PKG_VERSION:=4.3.11 PKG_VERSION:=4.3.11
PKG_RELEASE:=1 PKG_RELEASE:=2
PKG_MD5SUM:=fbc67d240812136a9842bc1f2a217b7a PKG_MD5SUM:=fbc67d240812136a9842bc1f2a217b7a
PKG_SOURCE_URL:=http://fr.php.net/distributions/ PKG_SOURCE_URL:=http://fr.php.net/distributions/
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_CAT:=bzcat PKG_CAT:=bzcat
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
include $(TOPDIR)/package/rules.mk include $(TOPDIR)/package/rules.mk
@ -28,33 +28,43 @@ endef
PKG_CONFIGURE_OPTS:= \ PKG_CONFIGURE_OPTS:= \
--enable-shared \ --enable-shared \
--disable-static \ --disable-static \
--disable-ctype \ --disable-rpath \
--disable-dom \ --disable-debug \
--without-pear \
\
--with-config-file-path=/etc \
--disable-ipv6 \ --disable-ipv6 \
--enable-magic-quotes \ --enable-magic-quotes \
--enable-memory-limit \ --enable-memory-limit \
--disable-overload \ --disable-overload \
--disable-short-tags \ --disable-short-tags \
--disable-tokenizer \ \
--disable-ctype \
--disable-dom \
--enable-ftp=shared \ --enable-ftp=shared \
--without-gettext \
--without-iconv \
--disable-mbstring \
--disable-mbregex \
--with-openssl=shared,"$(STAGING_DIR)/usr" \
--with-kerberos=no \
--with-openssl-dir="$(STAGING_DIR)/usr" \
--enable-session=shared \ --enable-session=shared \
--enable-sockets=shared \ --enable-sockets=shared \
--enable-xml=shared \ --disable-tokenizer \
--with-config-file-path=/etc \
--without-gettext \
--without-pear \
--with-zlib="$(STAGING_DIR)/usr" \ --with-zlib="$(STAGING_DIR)/usr" \
--with-zlib-dir="$(STAGING_DIR)/usr" \
ifneq ($(BR2_PACKAGE_PHP4_MOD_GD),) ifneq ($(BR2_PACKAGE_PHP4_MOD_GD),)
PKG_CONFIGURE_OPTS+= --with-gd=shared,"$(STAGING_DIR)/usr" \ PKG_CONFIGURE_OPTS+= --with-gd=shared,"$(STAGING_DIR)/usr" \
--enable-gd-native-ttf \ --enable-gd-native-ttf \
--with-png-dir="$(STAGING_DIR)/usr" \ --with-png-dir="$(STAGING_DIR)/usr"
--with-zlib-dir="$(STAGING_DIR)/usr"
else else
PKG_CONFIGURE_OPTS+= --without-gd PKG_CONFIGURE_OPTS+= --without-gd
endif endif
ifneq ($(BR2_PACKAGE_PHP4_MOD_LDAP),) ifneq ($(BR2_PACKAGE_PHP4_MOD_LDAP),)
PKG_CONFIGURE_OPTS+= --with-ldap=shared,"$(STAGING_DIR)/usr" PKG_CONFIGURE_OPTS+= --with-ldap=shared,"$(STAGING_DIR)/usr"
--with-ldap-sasl="$(STAGING_DIR)/usr"
else else
PKG_CONFIGURE_OPTS+= --without-ldap PKG_CONFIGURE_OPTS+= --without-ldap
endif endif
@ -63,11 +73,6 @@ PKG_CONFIGURE_OPTS+= --with-mysql=shared,"$(STAGING_DIR)/usr"
else else
PKG_CONFIGURE_OPTS+= --without-mysql PKG_CONFIGURE_OPTS+= --without-mysql
endif endif
ifneq ($(BR2_PACKAGE_PHP4_MOD_OPENSSL),)
PKG_CONFIGURE_OPTS+= --with-openssl=shared,"$(STAGING_DIR)/usr"
else
PKG_CONFIGURE_OPTS+= --without-openssl
endif
ifneq ($(BR2_PACKAGE_PHP4_MOD_PCRE),) ifneq ($(BR2_PACKAGE_PHP4_MOD_PCRE),)
PKG_CONFIGURE_OPTS+= --with-pcre-regex=shared,"$(STAGING_DIR)/usr" PKG_CONFIGURE_OPTS+= --with-pcre-regex=shared,"$(STAGING_DIR)/usr"
else else
@ -83,6 +88,12 @@ PKG_CONFIGURE_OPTS+= --with-sqlite=shared,"$(STAGING_DIR)/usr"
else else
PKG_CONFIGURE_OPTS+= --without-sqlite PKG_CONFIGURE_OPTS+= --without-sqlite
endif endif
ifneq ($(BR2_PACKAGE_PHP4_MOD_XML),)
PKG_CONFIGURE_OPTS+= --enable-xml=shared \
--with-expat-dir="$(STAGING_DIR)/usr"
else
PKG_CONFIGURE_OPTS+= --disable-xml
endif
$(eval $(call PKG_template,PHP4_CLI,php4-cli,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) $(eval $(call PKG_template,PHP4_CLI,php4-cli,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
$(eval $(call PKG_template,PHP4_CGI,php4-cgi,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) $(eval $(call PKG_template,PHP4_CGI,php4-cgi,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
@ -122,6 +133,8 @@ $(PKG_BUILD_DIR)/.built:
CFLAGS="$(TARGET_CFLAGS)" \ CFLAGS="$(TARGET_CFLAGS)" \
CPPFLAGS="-I$(STAGING_DIR)/usr/include" \ CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
LDFLAGS="-L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib" \ LDFLAGS="-L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib" \
LIBS="-lcrypto -lssl" \
php_cv_cc_rpath="no" \
./configure \ ./configure \
--target=$(GNU_TARGET_NAME) \ --target=$(GNU_TARGET_NAME) \
--host=$(GNU_TARGET_NAME) \ --host=$(GNU_TARGET_NAME) \
@ -130,7 +143,7 @@ $(PKG_BUILD_DIR)/.built:
--program-suffix="" \ --program-suffix="" \
--prefix=/usr \ --prefix=/usr \
--exec-prefix=/usr \ --exec-prefix=/usr \
--bindir=/usr/sbin \ --bindir=/usr/bin \
--datadir=/usr/share \ --datadir=/usr/share \
--includedir=/usr/include \ --includedir=/usr/include \
--infodir=/usr/share/info \ --infodir=/usr/share/info \
@ -156,6 +169,8 @@ $(PKG_BUILD_DIR)/.built:
CFLAGS="$(TARGET_CFLAGS)" \ CFLAGS="$(TARGET_CFLAGS)" \
CPPFLAGS="-I$(STAGING_DIR)/usr/include" \ CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
LDFLAGS="-L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib" \ LDFLAGS="-L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib" \
LIBS="-lcrypto -lssl" \
php_cv_cc_rpath="no" \
./configure \ ./configure \
--target=$(GNU_TARGET_NAME) \ --target=$(GNU_TARGET_NAME) \
--host=$(GNU_TARGET_NAME) \ --host=$(GNU_TARGET_NAME) \
@ -164,7 +179,7 @@ $(PKG_BUILD_DIR)/.built:
--program-suffix="" \ --program-suffix="" \
--prefix=/usr \ --prefix=/usr \
--exec-prefix=/usr \ --exec-prefix=/usr \
--bindir=/usr/sbin \ --bindir=/usr/bin \
--datadir=/usr/share \ --datadir=/usr/share \
--includedir=/usr/include \ --includedir=/usr/include \
--infodir=/usr/share/info \ --infodir=/usr/share/info \
@ -191,6 +206,8 @@ $(PKG_BUILD_DIR)/.built:
CFLAGS="$(TARGET_CFLAGS)" \ CFLAGS="$(TARGET_CFLAGS)" \
CPPFLAGS="-I$(STAGING_DIR)/usr/include" \ CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
LDFLAGS="-L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib" \ LDFLAGS="-L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib" \
LIBS="-lcrypto -lssl" \
php_cv_cc_rpath="no" \
./configure \ ./configure \
--target=$(GNU_TARGET_NAME) \ --target=$(GNU_TARGET_NAME) \
--host=$(GNU_TARGET_NAME) \ --host=$(GNU_TARGET_NAME) \
@ -225,16 +242,16 @@ $(PKG_BUILD_DIR)/.built:
$(IPKG_PHP4_CLI): $(IPKG_PHP4_CLI):
install -m0755 -d $(IDIR_PHP4_CLI)/etc install -m0755 -d $(IDIR_PHP4_CLI)/etc
install -m0644 ./files/php.ini $(IDIR_PHP4_CLI)/etc/ install -m0644 ./files/php.ini $(IDIR_PHP4_CLI)/etc/
install -m0755 -d $(IDIR_PHP4_CLI)/usr/sbin install -m0755 -d $(IDIR_PHP4_CLI)/usr/bin
cp -fpR $(PKG_BUILD_DIR)/php-cli $(IDIR_PHP4_CLI)/usr/sbin/php cp -fpR $(PKG_BUILD_DIR)/php-cli $(IDIR_PHP4_CLI)/usr/bin/php
$(RSTRIP) $(IDIR_PHP4_CLI) $(RSTRIP) $(IDIR_PHP4_CLI)
$(IPKG_BUILD) $(IDIR_PHP4_CLI) $(PACKAGE_DIR) $(IPKG_BUILD) $(IDIR_PHP4_CLI) $(PACKAGE_DIR)
$(IPKG_PHP4_CGI): $(IPKG_PHP4_CGI):
install -m0755 -d $(IDIR_PHP4_CGI)/etc install -m0755 -d $(IDIR_PHP4_CGI)/etc
install -m0644 ./files/php.ini $(IDIR_PHP4_CGI)/etc/ install -m0644 ./files/php.ini $(IDIR_PHP4_CGI)/etc/
install -m0755 -d $(IDIR_PHP4_CGI)/usr/sbin install -m0755 -d $(IDIR_PHP4_CGI)/usr/bin
cp -fpR $(PKG_BUILD_DIR)/php-cgi $(IDIR_PHP4_CGI)/usr/sbin/php cp -fpR $(PKG_BUILD_DIR)/php-cgi $(IDIR_PHP4_CGI)/usr/bin/php
$(RSTRIP) $(IDIR_PHP4_CGI) $(RSTRIP) $(IDIR_PHP4_CGI)
$(IPKG_BUILD) $(IDIR_PHP4_CGI) $(PACKAGE_DIR) $(IPKG_BUILD) $(IDIR_PHP4_CGI) $(PACKAGE_DIR)

@ -6,4 +6,4 @@ Architecture: [TBDL]
Maintainer: Anael Orlinski <anael.orlinski@gmail.com>, Nico <nthill@free.fr> Maintainer: Anael Orlinski <anael.orlinski@gmail.com>, Nico <nthill@free.fr>
Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/php4/ Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/php4/
Description: XML module for PHP4 Description: XML module for PHP4
Depends: php4 Depends: php4, libexpat

Loading…
Cancel
Save