mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-10 17:01:54 +02:00
Add php4 package (Thanks aorlinsk and enzo for the help)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1334 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
01e2834429
commit
8d6baf0057
@ -17,6 +17,7 @@ source "package/lua/Config.in"
|
|||||||
source "package/microperl/Config.in"
|
source "package/microperl/Config.in"
|
||||||
source "package/monit/Config.in"
|
source "package/monit/Config.in"
|
||||||
source "package/osiris/Config.in"
|
source "package/osiris/Config.in"
|
||||||
|
source "package/php4/Config.in"
|
||||||
menu "sablevm - a Java Virtual Machine (JVM) implementation"
|
menu "sablevm - a Java Virtual Machine (JVM) implementation"
|
||||||
source "package/sablevm/Config.in"
|
source "package/sablevm/Config.in"
|
||||||
source "package/sablevm-classpath/Config.in"
|
source "package/sablevm-classpath/Config.in"
|
||||||
|
@ -85,6 +85,7 @@ package-$(BR2_PACKAGE_OPENSWAN) += openswan
|
|||||||
package-$(BR2_PACKAGE_OPENVPN) += openvpn
|
package-$(BR2_PACKAGE_OPENVPN) += openvpn
|
||||||
package-$(BR2_PACKAGE_OSIRIS) += osiris
|
package-$(BR2_PACKAGE_OSIRIS) += osiris
|
||||||
package-$(BR2_PACKAGE_PCRE) += pcre
|
package-$(BR2_PACKAGE_PCRE) += pcre
|
||||||
|
package-$(BR2_PACKAGE_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
|
||||||
@ -211,6 +212,28 @@ ifeq ($(BR2_PACKAGE_OPENVPN_LZO),y)
|
|||||||
openvpn-compile: lzo-compile
|
openvpn-compile: lzo-compile
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifneq ($(BR2_PACKAGE_PHP4_MOD_GD),)
|
||||||
|
php4-compile: libgd-compile libpng-compile
|
||||||
|
endif
|
||||||
|
ifneq ($(BR2_PACKAGE_PHP4_MOD_LDAP),)
|
||||||
|
php4-compile: openldap-compile
|
||||||
|
endif
|
||||||
|
ifneq ($(BR2_PACKAGE_PHP4_MOD_MYSQL),)
|
||||||
|
php4-compile: mysql-compile
|
||||||
|
endif
|
||||||
|
ifneq ($(BR2_PACKAGE_PHP4_MOD_OPENSSL),)
|
||||||
|
php4-compile: openssl-compile
|
||||||
|
endif
|
||||||
|
ifneq ($(BR2_PACKAGE_PHP4_MOD_PCRE),)
|
||||||
|
php4-compile: pcre-compile
|
||||||
|
endif
|
||||||
|
ifneq ($(BR2_PACKAGE_PHP4_MOD_PGSQL),)
|
||||||
|
php4-compile: postgresql-compile
|
||||||
|
endif
|
||||||
|
ifneq ($(BR2_PACKAGE_PHP4_MOD_SQLITE),)
|
||||||
|
php4-compile: sqlite2-compile
|
||||||
|
endif
|
||||||
|
|
||||||
pmacct-compile: libpcap-compile
|
pmacct-compile: libpcap-compile
|
||||||
ifneq ($(BR2_PACKAGE_PMACCT_MYSQL),)
|
ifneq ($(BR2_PACKAGE_PMACCT_MYSQL),)
|
||||||
pmacct-compile: mysql-compile
|
pmacct-compile: mysql-compile
|
||||||
|
106
openwrt/package/php4/Config.in
Normal file
106
openwrt/package/php4/Config.in
Normal file
@ -0,0 +1,106 @@
|
|||||||
|
menu "php4 - Hypertext preprocessor"
|
||||||
|
|
||||||
|
config BR2_PACKAGE_PHP4
|
||||||
|
prompt "php4 - Hypertext preprocessor"
|
||||||
|
bool
|
||||||
|
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/
|
||||||
|
|
||||||
|
|
||||||
|
config BR2_PACKAGE_PHP4_CLI
|
||||||
|
prompt "...-cli - PHP4 CLI (Command Line Interface)"
|
||||||
|
tristate
|
||||||
|
# default m if CONFIG_DEVEL
|
||||||
|
select BR2_PACKAGE_PHP4
|
||||||
|
|
||||||
|
config BR2_PACKAGE_PHP4_CGI
|
||||||
|
prompt "...-cgi - PHP4 built for CGI"
|
||||||
|
tristate
|
||||||
|
# default m if CONFIG_DEVEL
|
||||||
|
select BR2_PACKAGE_PHP4
|
||||||
|
|
||||||
|
config BR2_PACKAGE_PHP4_FASTCGI
|
||||||
|
prompt "...-fastcgi - PHP4 built for FastCGI"
|
||||||
|
tristate
|
||||||
|
# default m if CONFIG_DEVEL
|
||||||
|
select BR2_PACKAGE_PHP4
|
||||||
|
|
||||||
|
config BR2_PACKAGE_PHP4_MOD_FTP
|
||||||
|
prompt "...-mod-ftp - FTP module"
|
||||||
|
tristate
|
||||||
|
# default m if CONFIG_DEVEL
|
||||||
|
depends BR2_PACKAGE_PHP4
|
||||||
|
|
||||||
|
config BR2_PACKAGE_PHP4_MOD_GD
|
||||||
|
prompt "...-mod-gd - GD graphics library module"
|
||||||
|
tristate
|
||||||
|
# default m if CONFIG_DEVEL
|
||||||
|
depends BR2_PACKAGE_PHP4
|
||||||
|
select BR2_PACKAGE_LIBGD
|
||||||
|
select BR2_PACKAGE_LIBPNG
|
||||||
|
|
||||||
|
config BR2_PACKAGE_PHP4_MOD_LDAP
|
||||||
|
prompt "...-mod-ldap - LDAP module"
|
||||||
|
tristate
|
||||||
|
# default m if CONFIG_DEVEL
|
||||||
|
depends BR2_PACKAGE_PHP4
|
||||||
|
select BR2_PACKAGE_LIBOPENLDAP
|
||||||
|
|
||||||
|
config BR2_PACKAGE_PHP4_MOD_MYSQL
|
||||||
|
prompt "...-mod-mysql - MySQL module"
|
||||||
|
tristate
|
||||||
|
# default m if CONFIG_DEVEL
|
||||||
|
depends BR2_PACKAGE_PHP4
|
||||||
|
select BR2_PACKAGE_LIBMYSQLCLIENT
|
||||||
|
|
||||||
|
config BR2_PACKAGE_PHP4_MOD_OPENSSL
|
||||||
|
prompt "...-mod-openssl - OpenSSL module"
|
||||||
|
tristate
|
||||||
|
# default m if CONFIG_DEVEL
|
||||||
|
depends BR2_PACKAGE_PHP4
|
||||||
|
select BR2_PACKAGE_LIBOPENSSL
|
||||||
|
|
||||||
|
config BR2_PACKAGE_PHP4_MOD_PCRE
|
||||||
|
prompt "...-mod-pcre - PCRE module"
|
||||||
|
tristate
|
||||||
|
# default m if CONFIG_DEVEL
|
||||||
|
depends BR2_PACKAGE_PHP4
|
||||||
|
select BR2_PACKAGE_LIBPCRE
|
||||||
|
|
||||||
|
config BR2_PACKAGE_PHP4_MOD_PGSQL
|
||||||
|
prompt "...-mod-pgsql - PostgreSQL module"
|
||||||
|
tristate
|
||||||
|
# default m if CONFIG_DEVEL
|
||||||
|
depends BR2_PACKAGE_PHP4
|
||||||
|
select BR2_PACKAGE_LIBPQ
|
||||||
|
|
||||||
|
config BR2_PACKAGE_PHP4_MOD_SESSION
|
||||||
|
prompt "...-mod-session - Sessions module"
|
||||||
|
tristate
|
||||||
|
# default m if CONFIG_DEVEL
|
||||||
|
depends BR2_PACKAGE_PHP4
|
||||||
|
|
||||||
|
config BR2_PACKAGE_PHP4_MOD_SQLITE
|
||||||
|
prompt "...-mod-sqlite - SQLite module"
|
||||||
|
tristate
|
||||||
|
# default m if CONFIG_DEVEL
|
||||||
|
depends BR2_PACKAGE_PHP4
|
||||||
|
select BR2_PACKAGE_LIBSQLITE
|
||||||
|
|
||||||
|
config BR2_PACKAGE_PHP4_MOD_SOCKETS
|
||||||
|
prompt "...-mod-sockets - Sockets module"
|
||||||
|
tristate
|
||||||
|
# default m if CONFIG_DEVEL
|
||||||
|
depends BR2_PACKAGE_PHP4
|
||||||
|
|
||||||
|
config BR2_PACKAGE_PHP4_MOD_XML
|
||||||
|
prompt "...-mod-xml - XML module"
|
||||||
|
tristate
|
||||||
|
# default m if CONFIG_DEVEL
|
||||||
|
depends BR2_PACKAGE_PHP4
|
||||||
|
|
||||||
|
endmenu
|
250
openwrt/package/php4/Makefile
Normal file
250
openwrt/package/php4/Makefile
Normal file
@ -0,0 +1,250 @@
|
|||||||
|
# $Id$
|
||||||
|
|
||||||
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
|
PKG_NAME:=php
|
||||||
|
PKG_VERSION:=4.3.11
|
||||||
|
PKG_RELEASE:=1
|
||||||
|
PKG_MD5SUM:=fbc67d240812136a9842bc1f2a217b7a
|
||||||
|
PKG_SOURCE_URL:=http://fr.php.net/distributions/
|
||||||
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||||
|
PKG_CAT:=bzcat
|
||||||
|
|
||||||
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||||
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
||||||
|
|
||||||
|
include $(TOPDIR)/package/rules.mk
|
||||||
|
|
||||||
|
define PKG_mod_template
|
||||||
|
|
||||||
|
$$(IPKG_$(1)):
|
||||||
|
install -d -m0755 $$(IDIR_$(1))/usr/lib/php
|
||||||
|
install -m0755 $(PKG_BUILD_DIR)/modules/$(2).so $$(IDIR_$(1))/usr/lib/php
|
||||||
|
$(RSTRIP) $$(IDIR_$(1))
|
||||||
|
$(IPKG_BUILD) $$(IDIR_$(1)) $(PACKAGE_DIR)
|
||||||
|
|
||||||
|
endef
|
||||||
|
|
||||||
|
PKG_CONFIGURE_OPTS:= \
|
||||||
|
--enable-shared \
|
||||||
|
--disable-static \
|
||||||
|
--disable-ctype \
|
||||||
|
--disable-dom \
|
||||||
|
--disable-ipv6 \
|
||||||
|
--enable-magic-quotes \
|
||||||
|
--enable-memory-limit \
|
||||||
|
--disable-overload \
|
||||||
|
--disable-short-tags \
|
||||||
|
--disable-tokenizer \
|
||||||
|
--enable-ftp=shared \
|
||||||
|
--enable-session=shared \
|
||||||
|
--enable-sockets=shared \
|
||||||
|
--enable-xml=shared \
|
||||||
|
--with-config-file-path=/etc \
|
||||||
|
--without-gettext \
|
||||||
|
--without-pear \
|
||||||
|
--with-zlib="$(STAGING_DIR)/usr" \
|
||||||
|
|
||||||
|
ifneq ($(BR2_PACKAGE_PHP4_MOD_GD),)
|
||||||
|
PKG_CONFIGURE_OPTS+= --with-gd=shared,"$(STAGING_DIR)/usr" \
|
||||||
|
--enable-gd-native-ttf \
|
||||||
|
--with-png-dir="$(STAGING_DIR)/usr" \
|
||||||
|
--with-zlib-dir="$(STAGING_DIR)/usr"
|
||||||
|
else
|
||||||
|
PKG_CONFIGURE_OPTS+= --without-gd
|
||||||
|
endif
|
||||||
|
ifneq ($(BR2_PACKAGE_PHP4_MOD_LDAP),)
|
||||||
|
PKG_CONFIGURE_OPTS+= --with-ldap=shared,"$(STAGING_DIR)/usr"
|
||||||
|
else
|
||||||
|
PKG_CONFIGURE_OPTS+= --without-ldap
|
||||||
|
endif
|
||||||
|
ifneq ($(BR2_PACKAGE_PHP4_MOD_MYSQL),)
|
||||||
|
PKG_CONFIGURE_OPTS+= --with-mysql=shared,"$(STAGING_DIR)/usr"
|
||||||
|
else
|
||||||
|
PKG_CONFIGURE_OPTS+= --without-mysql
|
||||||
|
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),)
|
||||||
|
PKG_CONFIGURE_OPTS+= --with-pcre-regex=shared,"$(STAGING_DIR)/usr"
|
||||||
|
else
|
||||||
|
PKG_CONFIGURE_OPTS+= --without-pcre-regex
|
||||||
|
endif
|
||||||
|
ifneq ($(BR2_PACKAGE_PHP4_MOD_PGSQL),)
|
||||||
|
PKG_CONFIGURE_OPTS+= --with-pgsql=shared,"$(STAGING_DIR)/usr"
|
||||||
|
else
|
||||||
|
PKG_CONFIGURE_OPTS+= --without-pgsql
|
||||||
|
endif
|
||||||
|
ifneq ($(BR2_PACKAGE_PHP4_MOD_SQLITE),)
|
||||||
|
PKG_CONFIGURE_OPTS+= --with-sqlite=shared,"$(STAGING_DIR)/usr"
|
||||||
|
else
|
||||||
|
PKG_CONFIGURE_OPTS+= --without-sqlite
|
||||||
|
endif
|
||||||
|
|
||||||
|
$(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_FASTCGI,php4-fastcgi,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||||
|
|
||||||
|
$(eval $(call PKG_template,PHP4_MOD_FTP,php4-mod-ftp,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||||
|
$(eval $(call PKG_template,PHP4_MOD_GD,php4-mod-gd,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||||
|
$(eval $(call PKG_template,PHP4_MOD_LDAP,php4-mod-ldap,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||||
|
$(eval $(call PKG_template,PHP4_MOD_MYSQL,php4-mod-mysql,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||||
|
$(eval $(call PKG_template,PHP4_MOD_OPENSSL,php4-mod-openssl,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||||
|
$(eval $(call PKG_template,PHP4_MOD_PCRE,php4-mod-pcre,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||||
|
$(eval $(call PKG_template,PHP4_MOD_PGSQL,php4-mod-pgsql,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||||
|
$(eval $(call PKG_template,PHP4_MOD_SESSION,php4-mod-session,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||||
|
$(eval $(call PKG_template,PHP4_MOD_SOCKETS,php4-mod-sockets,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||||
|
$(eval $(call PKG_template,PHP4_MOD_SQLITE,php4-mod-sqlite,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||||
|
$(eval $(call PKG_template,PHP4_MOD_XML,php4-mod-xml,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||||
|
|
||||||
|
$(eval $(call PKG_mod_template,PHP4_MOD_FTP,ftp))
|
||||||
|
$(eval $(call PKG_mod_template,PHP4_MOD_GD,gd))
|
||||||
|
$(eval $(call PKG_mod_template,PHP4_MOD_LDAP,ldap))
|
||||||
|
$(eval $(call PKG_mod_template,PHP4_MOD_MYSQL,mysql))
|
||||||
|
$(eval $(call PKG_mod_template,PHP4_MOD_OPENSSL,openssl))
|
||||||
|
$(eval $(call PKG_mod_template,PHP4_MOD_PCRE,pcre))
|
||||||
|
$(eval $(call PKG_mod_template,PHP4_MOD_PGSQL,pgsql))
|
||||||
|
$(eval $(call PKG_mod_template,PHP4_MOD_SESSION,session))
|
||||||
|
$(eval $(call PKG_mod_template,PHP4_MOD_SOCKETS,sockets))
|
||||||
|
$(eval $(call PKG_mod_template,PHP4_MOD_SQLITE,sqlite))
|
||||||
|
$(eval $(call PKG_mod_template,PHP4_MOD_XML,xml))
|
||||||
|
|
||||||
|
|
||||||
|
$(PKG_BUILD_DIR)/.configured:
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
$(PKG_BUILD_DIR)/.built:
|
||||||
|
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
|
||||||
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
|
CFLAGS="$(TARGET_CFLAGS)" \
|
||||||
|
CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
|
||||||
|
LDFLAGS="-L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib" \
|
||||||
|
./configure \
|
||||||
|
--target=$(GNU_TARGET_NAME) \
|
||||||
|
--host=$(GNU_TARGET_NAME) \
|
||||||
|
--build=$(GNU_HOST_NAME) \
|
||||||
|
--program-prefix="" \
|
||||||
|
--program-suffix="" \
|
||||||
|
--prefix=/usr \
|
||||||
|
--exec-prefix=/usr \
|
||||||
|
--bindir=/usr/sbin \
|
||||||
|
--datadir=/usr/share \
|
||||||
|
--includedir=/usr/include \
|
||||||
|
--infodir=/usr/share/info \
|
||||||
|
--libdir=/usr/lib \
|
||||||
|
--libexecdir=/usr/lib \
|
||||||
|
--localstatedir=/var \
|
||||||
|
--mandir=/usr/share/man \
|
||||||
|
--sbindir=/usr/sbin \
|
||||||
|
--sysconfdir=/etc \
|
||||||
|
$(DISABLE_LARGEFILE) \
|
||||||
|
$(DISABLE_NLS) \
|
||||||
|
$(PKG_CONFIGURE_OPTS) \
|
||||||
|
--enable-cli \
|
||||||
|
--disable-cgi \
|
||||||
|
--disable-fastcgi \
|
||||||
|
--enable-force-cgi-redirect \
|
||||||
|
--enable-discard-path \
|
||||||
|
);
|
||||||
|
$(MAKE) -C $(PKG_BUILD_DIR)
|
||||||
|
mv $(PKG_BUILD_DIR)/sapi/cli/php $(PKG_BUILD_DIR)/php-cli
|
||||||
|
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
|
||||||
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
|
CFLAGS="$(TARGET_CFLAGS)" \
|
||||||
|
CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
|
||||||
|
LDFLAGS="-L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib" \
|
||||||
|
./configure \
|
||||||
|
--target=$(GNU_TARGET_NAME) \
|
||||||
|
--host=$(GNU_TARGET_NAME) \
|
||||||
|
--build=$(GNU_HOST_NAME) \
|
||||||
|
--program-prefix="" \
|
||||||
|
--program-suffix="" \
|
||||||
|
--prefix=/usr \
|
||||||
|
--exec-prefix=/usr \
|
||||||
|
--bindir=/usr/sbin \
|
||||||
|
--datadir=/usr/share \
|
||||||
|
--includedir=/usr/include \
|
||||||
|
--infodir=/usr/share/info \
|
||||||
|
--libdir=/usr/lib \
|
||||||
|
--libexecdir=/usr/lib \
|
||||||
|
--localstatedir=/var \
|
||||||
|
--mandir=/usr/share/man \
|
||||||
|
--sbindir=/usr/sbin \
|
||||||
|
--sysconfdir=/etc \
|
||||||
|
$(DISABLE_LARGEFILE) \
|
||||||
|
$(DISABLE_NLS) \
|
||||||
|
$(PKG_CONFIGURE_OPTS) \
|
||||||
|
--disable-cli \
|
||||||
|
--enable-cgi \
|
||||||
|
--disable-fastcgi \
|
||||||
|
--enable-force-cgi-redirect \
|
||||||
|
--enable-discard-path \
|
||||||
|
);
|
||||||
|
$(MAKE) -C $(PKG_BUILD_DIR)
|
||||||
|
mv $(PKG_BUILD_DIR)/sapi/cgi/php $(PKG_BUILD_DIR)/php-cgi
|
||||||
|
$(MAKE) -C $(PKG_BUILD_DIR) clean
|
||||||
|
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
|
||||||
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
|
CFLAGS="$(TARGET_CFLAGS)" \
|
||||||
|
CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
|
||||||
|
LDFLAGS="-L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib" \
|
||||||
|
./configure \
|
||||||
|
--target=$(GNU_TARGET_NAME) \
|
||||||
|
--host=$(GNU_TARGET_NAME) \
|
||||||
|
--build=$(GNU_HOST_NAME) \
|
||||||
|
--program-prefix="" \
|
||||||
|
--program-suffix="" \
|
||||||
|
--prefix=/usr \
|
||||||
|
--exec-prefix=/usr \
|
||||||
|
--bindir=/usr/sbin \
|
||||||
|
--datadir=/usr/share \
|
||||||
|
--includedir=/usr/include \
|
||||||
|
--infodir=/usr/share/info \
|
||||||
|
--libdir=/usr/lib \
|
||||||
|
--libexecdir=/usr/lib \
|
||||||
|
--localstatedir=/var \
|
||||||
|
--mandir=/usr/share/man \
|
||||||
|
--sbindir=/usr/sbin \
|
||||||
|
--sysconfdir=/etc \
|
||||||
|
$(DISABLE_LARGEFILE) \
|
||||||
|
$(DISABLE_NLS) \
|
||||||
|
$(PKG_CONFIGURE_OPTS) \
|
||||||
|
--disable-cli \
|
||||||
|
--enable-cgi \
|
||||||
|
--enable-fastcgi \
|
||||||
|
--enable-force-cgi-redirect \
|
||||||
|
--enable-discard-path \
|
||||||
|
);
|
||||||
|
$(MAKE) -C $(PKG_BUILD_DIR)
|
||||||
|
mv $(PKG_BUILD_DIR)/sapi/cgi/php $(PKG_BUILD_DIR)/php-fastcgi
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
$(IPKG_PHP4_CLI):
|
||||||
|
install -m0755 -d $(IDIR_PHP4_CLI)/etc
|
||||||
|
install -m0644 ./files/php.ini $(IDIR_PHP4_CLI)/etc/
|
||||||
|
install -m0755 -d $(IDIR_PHP4_CLI)/usr/sbin
|
||||||
|
cp -fpR $(PKG_BUILD_DIR)/php-cli $(IDIR_PHP4_CLI)/usr/sbin/php
|
||||||
|
$(RSTRIP) $(IDIR_PHP4_CLI)
|
||||||
|
$(IPKG_BUILD) $(IDIR_PHP4_CLI) $(PACKAGE_DIR)
|
||||||
|
|
||||||
|
$(IPKG_PHP4_CGI):
|
||||||
|
install -m0755 -d $(IDIR_PHP4_CGI)/etc
|
||||||
|
install -m0644 ./files/php.ini $(IDIR_PHP4_CGI)/etc/
|
||||||
|
install -m0755 -d $(IDIR_PHP4_CGI)/usr/sbin
|
||||||
|
cp -fpR $(PKG_BUILD_DIR)/php-cgi $(IDIR_PHP4_CGI)/usr/sbin/php
|
||||||
|
$(RSTRIP) $(IDIR_PHP4_CGI)
|
||||||
|
$(IPKG_BUILD) $(IDIR_PHP4_CGI) $(PACKAGE_DIR)
|
||||||
|
|
||||||
|
$(IPKG_PHP4_FASTCGI):
|
||||||
|
install -m0755 -d $(IDIR_PHP4_FASTCGI)/etc
|
||||||
|
install -m0644 ./files/php.ini $(IDIR_PHP4_FASTCGI)/etc/
|
||||||
|
install -m0755 -d $(IDIR_PHP4_FASTCGI)/etc/init.d
|
||||||
|
install -m0755 ./files/php.init $(IDIR_PHP4_FASTCGI)/etc/init.d/php
|
||||||
|
install -m0755 -d $(IDIR_PHP4_FASTCGI)/usr/sbin
|
||||||
|
cp -fpR $(PKG_BUILD_DIR)/php-fastcgi $(IDIR_PHP4_FASTCGI)/usr/sbin/php
|
||||||
|
$(RSTRIP) $(IDIR_PHP4_FASTCGI)
|
||||||
|
$(IPKG_BUILD) $(IDIR_PHP4_FASTCGI) $(PACKAGE_DIR)
|
||||||
|
|
561
openwrt/package/php4/files/php.ini
Normal file
561
openwrt/package/php4/files/php.ini
Normal file
@ -0,0 +1,561 @@
|
|||||||
|
[PHP]
|
||||||
|
|
||||||
|
cgi.fix_pathinfo=1
|
||||||
|
|
||||||
|
zend.ze1_compatibility_mode = Off
|
||||||
|
|
||||||
|
;short_open_tag = Off
|
||||||
|
asp_tags = Off
|
||||||
|
precision = 12
|
||||||
|
y2k_compliance = On
|
||||||
|
output_buffering = Off
|
||||||
|
|
||||||
|
zlib.output_compression = Off
|
||||||
|
;zlib.output_handler =
|
||||||
|
implicit_flush = Off
|
||||||
|
|
||||||
|
unserialize_callback_func=
|
||||||
|
serialize_precision = 100
|
||||||
|
|
||||||
|
allow_call_time_pass_reference = On
|
||||||
|
|
||||||
|
safe_mode = Off
|
||||||
|
|
||||||
|
safe_mode_gid = Off
|
||||||
|
|
||||||
|
safe_mode_include_dir =
|
||||||
|
|
||||||
|
safe_mode_exec_dir =
|
||||||
|
|
||||||
|
safe_mode_allowed_env_vars = PHP_
|
||||||
|
|
||||||
|
safe_mode_protected_env_vars = LD_LIBRARY_PATH
|
||||||
|
|
||||||
|
;open_basedir =
|
||||||
|
|
||||||
|
disable_functions =
|
||||||
|
|
||||||
|
disable_classes =
|
||||||
|
|
||||||
|
; Colors for Syntax Highlighting mode. Anything that's acceptable in
|
||||||
|
; <span style="color: ???????"> would work.
|
||||||
|
;highlight.string = #DD0000
|
||||||
|
;highlight.comment = #FF9900
|
||||||
|
;highlight.keyword = #007700
|
||||||
|
;highlight.bg = #FFFFFF
|
||||||
|
;highlight.default = #0000BB
|
||||||
|
;highlight.html = #000000
|
||||||
|
|
||||||
|
expose_php = On
|
||||||
|
|
||||||
|
|
||||||
|
;;;;;;;;;;;;;;;;;;;
|
||||||
|
; Resource Limits ;
|
||||||
|
;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
|
max_execution_time = 30 ; Maximum execution time of each script, in seconds
|
||||||
|
max_input_time = 60 ; Maximum amount of time each script may spend parsing request data
|
||||||
|
memory_limit = 8M ; Maximum amount of memory a script may consume (8MB)
|
||||||
|
|
||||||
|
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
; Error handling and logging ;
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
|
; error_reporting is a bit-field. Or each number up to get desired error
|
||||||
|
; reporting level
|
||||||
|
; E_ALL - All errors and warnings (doesn't include E_STRICT)
|
||||||
|
; E_ERROR - fatal run-time errors
|
||||||
|
; E_WARNING - run-time warnings (non-fatal errors)
|
||||||
|
; E_PARSE - compile-time parse errors
|
||||||
|
; E_NOTICE - run-time notices (these are warnings which often result
|
||||||
|
; from a bug in your code, but it's possible that it was
|
||||||
|
; intentional (e.g., using an uninitialized variable and
|
||||||
|
; relying on the fact it's automatically initialized to an
|
||||||
|
; empty string)
|
||||||
|
; E_STRICT - run-time notices, enable to have PHP suggest changes
|
||||||
|
; to your code which will ensure the best interoperability
|
||||||
|
; and forward compatibility of your code
|
||||||
|
; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
|
||||||
|
; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
|
||||||
|
; initial startup
|
||||||
|
; E_COMPILE_ERROR - fatal compile-time errors
|
||||||
|
; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
|
||||||
|
; E_USER_ERROR - user-generated error message
|
||||||
|
; E_USER_WARNING - user-generated warning message
|
||||||
|
; E_USER_NOTICE - user-generated notice message
|
||||||
|
;
|
||||||
|
; Examples:
|
||||||
|
;
|
||||||
|
; - Show all errors, except for notices and coding standards warnings
|
||||||
|
;
|
||||||
|
;error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT
|
||||||
|
;
|
||||||
|
; - Show all errors, except for notices
|
||||||
|
;
|
||||||
|
;error_reporting = E_ALL & ~E_NOTICE
|
||||||
|
;
|
||||||
|
; - Show only errors
|
||||||
|
;
|
||||||
|
;error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR
|
||||||
|
;
|
||||||
|
; - Show all errors except for notices and coding standards warnings
|
||||||
|
;
|
||||||
|
error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT
|
||||||
|
|
||||||
|
; Print out errors (as a part of the output). For production web sites,
|
||||||
|
; you're strongly encouraged to turn this feature off, and use error logging
|
||||||
|
; instead (see below). Keeping display_errors enabled on a production web site
|
||||||
|
; may reveal security information to end users, such as file paths on your Web
|
||||||
|
; server, your database schema or other information.
|
||||||
|
display_errors = On
|
||||||
|
|
||||||
|
; Even when display_errors is on, errors that occur during PHP's startup
|
||||||
|
; sequence are not displayed. It's strongly recommended to keep
|
||||||
|
; display_startup_errors off, except for when debugging.
|
||||||
|
display_startup_errors = Off
|
||||||
|
|
||||||
|
; Log errors into a log file (server-specific log, stderr, or error_log (below))
|
||||||
|
; As stated above, you're strongly advised to use error logging in place of
|
||||||
|
; error displaying on production web sites.
|
||||||
|
log_errors = Off
|
||||||
|
|
||||||
|
; Set maximum length of log_errors. In error_log information about the source is
|
||||||
|
; added. The default is 1024 and 0 allows to not apply any maximum length at all.
|
||||||
|
log_errors_max_len = 1024
|
||||||
|
|
||||||
|
; Do not log repeated messages. Repeated errors must occur in same file on same
|
||||||
|
; line until ignore_repeated_source is set true.
|
||||||
|
ignore_repeated_errors = Off
|
||||||
|
|
||||||
|
; Ignore source of message when ignoring repeated messages. When this setting
|
||||||
|
; is On you will not log errors with repeated messages from different files or
|
||||||
|
; sourcelines.
|
||||||
|
ignore_repeated_source = Off
|
||||||
|
|
||||||
|
; If this parameter is set to Off, then memory leaks will not be shown (on
|
||||||
|
; stdout or in the log). This has only effect in a debug compile, and if
|
||||||
|
; error reporting includes E_WARNING in the allowed list
|
||||||
|
report_memleaks = On
|
||||||
|
|
||||||
|
; Store the last error/warning message in $php_errormsg (boolean).
|
||||||
|
track_errors = Off
|
||||||
|
|
||||||
|
; Disable the inclusion of HTML tags in error messages.
|
||||||
|
; Note: Never use this feature for production boxes.
|
||||||
|
;html_errors = Off
|
||||||
|
|
||||||
|
; If html_errors is set On PHP produces clickable error messages that direct
|
||||||
|
; to a page describing the error or function causing the error in detail.
|
||||||
|
; You can download a copy of the PHP manual from http://www.php.net/docs.php
|
||||||
|
; and change docref_root to the base URL of your local copy including the
|
||||||
|
; leading '/'. You must also specify the file extension being used including
|
||||||
|
; the dot.
|
||||||
|
; Note: Never use this feature for production boxes.
|
||||||
|
;docref_root = "/phpmanual/"
|
||||||
|
;docref_ext = .html
|
||||||
|
|
||||||
|
; String to output before an error message.
|
||||||
|
;error_prepend_string = "<font color=ff0000>"
|
||||||
|
|
||||||
|
; String to output after an error message.
|
||||||
|
;error_append_string = "</font>"
|
||||||
|
|
||||||
|
; Log errors to specified file.
|
||||||
|
;error_log = filename
|
||||||
|
|
||||||
|
; Log errors to syslog (Event Log on NT, not valid in Windows 95).
|
||||||
|
;error_log = syslog
|
||||||
|
|
||||||
|
|
||||||
|
;;;;;;;;;;;;;;;;;
|
||||||
|
; Data Handling ;
|
||||||
|
;;;;;;;;;;;;;;;;;
|
||||||
|
;
|
||||||
|
; Note - track_vars is ALWAYS enabled as of PHP 4.0.3
|
||||||
|
|
||||||
|
; The separator used in PHP generated URLs to separate arguments.
|
||||||
|
; Default is "&".
|
||||||
|
;arg_separator.output = "&"
|
||||||
|
|
||||||
|
; List of separator(s) used by PHP to parse input URLs into variables.
|
||||||
|
; Default is "&".
|
||||||
|
; NOTE: Every character in this directive is considered as separator!
|
||||||
|
;arg_separator.input = ";&"
|
||||||
|
|
||||||
|
; This directive describes the order in which PHP registers GET, POST, Cookie,
|
||||||
|
; Environment and Built-in variables (G, P, C, E & S respectively, often
|
||||||
|
; referred to as EGPCS or GPC). Registration is done from left to right, newer
|
||||||
|
; values override older values.
|
||||||
|
variables_order = "EGPCS"
|
||||||
|
|
||||||
|
; Whether or not to register the EGPCS variables as global variables. You may
|
||||||
|
; want to turn this off if you don't want to clutter your scripts' global scope
|
||||||
|
; with user data. This makes most sense when coupled with track_vars - in which
|
||||||
|
; case you can access all of the GPC variables through the $HTTP_*_VARS[],
|
||||||
|
; variables.
|
||||||
|
;
|
||||||
|
; You should do your best to write your scripts so that they do not require
|
||||||
|
; register_globals to be on; Using form variables as globals can easily lead
|
||||||
|
; to possible security problems, if the code is not very well thought of.
|
||||||
|
register_globals = Off
|
||||||
|
|
||||||
|
; Whether or not to register the old-style input arrays, HTTP_GET_VARS
|
||||||
|
; and friends. If you're not using them, it's recommended to turn them off,
|
||||||
|
; for performance reasons.
|
||||||
|
register_long_arrays = On
|
||||||
|
|
||||||
|
; This directive tells PHP whether to declare the argv&argc variables (that
|
||||||
|
; would contain the GET information). If you don't use these variables, you
|
||||||
|
; should turn it off for increased performance.
|
||||||
|
register_argc_argv = On
|
||||||
|
|
||||||
|
; Maximum size of POST data that PHP will accept.
|
||||||
|
post_max_size = 8M
|
||||||
|
|
||||||
|
; Magic quotes
|
||||||
|
;
|
||||||
|
|
||||||
|
; Magic quotes for incoming GET/POST/Cookie data.
|
||||||
|
magic_quotes_gpc = On
|
||||||
|
|
||||||
|
; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
|
||||||
|
magic_quotes_runtime = Off
|
||||||
|
|
||||||
|
; Use Sybase-style magic quotes (escape ' with '' instead of \').
|
||||||
|
magic_quotes_sybase = Off
|
||||||
|
|
||||||
|
; Automatically add files before or after any PHP document.
|
||||||
|
auto_prepend_file =
|
||||||
|
auto_append_file =
|
||||||
|
|
||||||
|
; As of 4.0b4, PHP always outputs a character encoding by default in
|
||||||
|
; the Content-type: header. To disable sending of the charset, simply
|
||||||
|
; set it to be empty.
|
||||||
|
;
|
||||||
|
; PHP's built-in default is text/html
|
||||||
|
default_mimetype = "text/html"
|
||||||
|
;default_charset = "iso-8859-1"
|
||||||
|
|
||||||
|
; Always populate the $HTTP_RAW_POST_DATA variable.
|
||||||
|
;always_populate_raw_post_data = On
|
||||||
|
|
||||||
|
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
; Paths and Directories ;
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
|
; UNIX: "/path1:/path2"
|
||||||
|
;include_path = ".:/php/includes"
|
||||||
|
;
|
||||||
|
; Windows: "\path1;\path2"
|
||||||
|
;include_path = ".;c:\php\includes"
|
||||||
|
|
||||||
|
; The root of the PHP pages, used only if nonempty.
|
||||||
|
; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
|
||||||
|
; if you are running php as a CGI under any web server (other than IIS)
|
||||||
|
; see documentation for security issues. The alternate is to use the
|
||||||
|
; cgi.force_redirect configuration below
|
||||||
|
doc_root = /www
|
||||||
|
|
||||||
|
; The directory under which PHP opens the script using /~username used only
|
||||||
|
; if nonempty.
|
||||||
|
user_dir =
|
||||||
|
|
||||||
|
; Directory in which the loadable extensions (modules) reside.
|
||||||
|
extension_dir = "/usr/lib/php"
|
||||||
|
|
||||||
|
; Whether or not to enable the dl() function. The dl() function does NOT work
|
||||||
|
; properly in multithreaded servers, such as IIS or Zeus, and is automatically
|
||||||
|
; disabled on them.
|
||||||
|
enable_dl = On
|
||||||
|
|
||||||
|
; cgi.force_redirect is necessary to provide security running PHP as a CGI under
|
||||||
|
; most web servers. Left undefined, PHP turns this on by default. You can
|
||||||
|
; turn it off here AT YOUR OWN RISK
|
||||||
|
; **You CAN safely turn this off for IIS, in fact, you MUST.**
|
||||||
|
; cgi.force_redirect = 1
|
||||||
|
|
||||||
|
; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
|
||||||
|
; every request.
|
||||||
|
; cgi.nph = 1
|
||||||
|
|
||||||
|
; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
|
||||||
|
; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
|
||||||
|
; will look for to know it is OK to continue execution. Setting this variable MAY
|
||||||
|
; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
|
||||||
|
; cgi.redirect_status_env = ;
|
||||||
|
|
||||||
|
; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
|
||||||
|
; security tokens of the calling client. This allows IIS to define the
|
||||||
|
; security context that the request runs under. mod_fastcgi under Apache
|
||||||
|
; does not currently support this feature (03/17/2002)
|
||||||
|
; Set to 1 if running under IIS. Default is zero.
|
||||||
|
; fastcgi.impersonate = 1;
|
||||||
|
|
||||||
|
; cgi.rfc2616_headers configuration option tells PHP what type of headers to
|
||||||
|
; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
|
||||||
|
; is supported by Apache. When this option is set to 1 PHP will send
|
||||||
|
; RFC2616 compliant header.
|
||||||
|
; Default is zero.
|
||||||
|
;cgi.rfc2616_headers = 0
|
||||||
|
|
||||||
|
|
||||||
|
;;;;;;;;;;;;;;;;
|
||||||
|
; File Uploads ;
|
||||||
|
;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
|
; Whether to allow HTTP file uploads.
|
||||||
|
file_uploads = On
|
||||||
|
|
||||||
|
; Temporary directory for HTTP uploaded files (will use system default if not
|
||||||
|
; specified).
|
||||||
|
upload_tmp_dir = /tmp
|
||||||
|
|
||||||
|
; Maximum allowed size for uploaded files.
|
||||||
|
upload_max_filesize = 2M
|
||||||
|
|
||||||
|
|
||||||
|
;;;;;;;;;;;;;;;;;;
|
||||||
|
; Fopen wrappers ;
|
||||||
|
;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
|
; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
|
||||||
|
allow_url_fopen = On
|
||||||
|
|
||||||
|
; Define the anonymous ftp password (your email address)
|
||||||
|
;from="john@doe.com"
|
||||||
|
|
||||||
|
; Define the User-Agent string
|
||||||
|
; user_agent="PHP"
|
||||||
|
|
||||||
|
; Default timeout for socket based streams (seconds)
|
||||||
|
default_socket_timeout = 60
|
||||||
|
|
||||||
|
; If your scripts have to deal with files from Macintosh systems,
|
||||||
|
; or you are running on a Mac and need to deal with files from
|
||||||
|
; unix or win32 systems, setting this flag will cause PHP to
|
||||||
|
; automatically detect the EOL character in those files so that
|
||||||
|
; fgets() and file() will work regardless of the source of the file.
|
||||||
|
; auto_detect_line_endings = Off
|
||||||
|
|
||||||
|
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
; Dynamic Extensions ;
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
;
|
||||||
|
; If you wish to have an extension loaded automatically, use the following
|
||||||
|
; syntax:
|
||||||
|
;
|
||||||
|
; extension=modulename.extension
|
||||||
|
;
|
||||||
|
; For example, on Windows:
|
||||||
|
;
|
||||||
|
; extension=msql.dll
|
||||||
|
;
|
||||||
|
; ... or under UNIX:
|
||||||
|
;
|
||||||
|
; extension=msql.so
|
||||||
|
;
|
||||||
|
; Note that it should be the name of the module only; no directory information
|
||||||
|
; needs to go here. Specify the location of the extension with the
|
||||||
|
; extension_dir directive above.
|
||||||
|
|
||||||
|
|
||||||
|
;Windows Extensions
|
||||||
|
;Note that ODBC support is built in, so no dll is needed for it.
|
||||||
|
;
|
||||||
|
|
||||||
|
;extension=ftp.so
|
||||||
|
;extension=gd.so
|
||||||
|
;extension=mysql.so
|
||||||
|
;extension=pcre.so
|
||||||
|
;extension=session.so
|
||||||
|
;extension=sockets.so
|
||||||
|
;extension=xml.so
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
;;;;;;;;;;;;;;;;;;;
|
||||||
|
; Module Settings ;
|
||||||
|
;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
|
[SQL]
|
||||||
|
sql.safe_mode = Off
|
||||||
|
|
||||||
|
[Session]
|
||||||
|
; Handler used to store/retrieve data.
|
||||||
|
session.save_handler = files
|
||||||
|
|
||||||
|
; Argument passed to save_handler. In the case of files, this is the path
|
||||||
|
; where data files are stored. Note: Windows users have to change this
|
||||||
|
; variable in order to use PHP's session functions.
|
||||||
|
;
|
||||||
|
; As of PHP 4.0.1, you can define the path as:
|
||||||
|
;
|
||||||
|
; session.save_path = "N;/path"
|
||||||
|
;
|
||||||
|
; where N is an integer. Instead of storing all the session files in
|
||||||
|
; /path, what this will do is use subdirectories N-levels deep, and
|
||||||
|
; store the session data in those directories. This is useful if you
|
||||||
|
; or your OS have problems with lots of files in one directory, and is
|
||||||
|
; a more efficient layout for servers that handle lots of sessions.
|
||||||
|
;
|
||||||
|
; NOTE 1: PHP will not create this directory structure automatically.
|
||||||
|
; You can use the script in the ext/session dir for that purpose.
|
||||||
|
; NOTE 2: See the section on garbage collection below if you choose to
|
||||||
|
; use subdirectories for session storage
|
||||||
|
;
|
||||||
|
; The file storage module creates files using mode 600 by default.
|
||||||
|
; You can change that by using
|
||||||
|
;
|
||||||
|
; session.save_path = "N;MODE;/path"
|
||||||
|
;
|
||||||
|
; where MODE is the octal representation of the mode. Note that this
|
||||||
|
; does not overwrite the process's umask.
|
||||||
|
session.save_path = "/tmp"
|
||||||
|
|
||||||
|
; Whether to use cookies.
|
||||||
|
session.use_cookies = 1
|
||||||
|
|
||||||
|
; This option enables administrators to make their users invulnerable to
|
||||||
|
; attacks which involve passing session ids in URLs; defaults to 0.
|
||||||
|
; session.use_only_cookies = 1
|
||||||
|
|
||||||
|
; Name of the session (used as cookie name).
|
||||||
|
session.name = PHPSESSID
|
||||||
|
|
||||||
|
; Initialize session on request startup.
|
||||||
|
session.auto_start = 0
|
||||||
|
|
||||||
|
; Lifetime in seconds of cookie or, if 0, until browser is restarted.
|
||||||
|
session.cookie_lifetime = 0
|
||||||
|
|
||||||
|
; The path for which the cookie is valid.
|
||||||
|
session.cookie_path = /
|
||||||
|
|
||||||
|
; The domain for which the cookie is valid.
|
||||||
|
session.cookie_domain =
|
||||||
|
|
||||||
|
; Handler used to serialize data. php is the standard serializer of PHP.
|
||||||
|
session.serialize_handler = php
|
||||||
|
|
||||||
|
; Define the probability that the 'garbage collection' process is started
|
||||||
|
; on every session initialization.
|
||||||
|
; The probability is calculated by using gc_probability/gc_divisor,
|
||||||
|
; e.g. 1/100 means there is a 1% chance that the GC process starts
|
||||||
|
; on each request.
|
||||||
|
|
||||||
|
session.gc_probability = 1
|
||||||
|
session.gc_divisor = 100
|
||||||
|
|
||||||
|
; After this number of seconds, stored data will be seen as 'garbage' and
|
||||||
|
; cleaned up by the garbage collection process.
|
||||||
|
session.gc_maxlifetime = 1440
|
||||||
|
|
||||||
|
; NOTE: If you are using the subdirectory option for storing session files
|
||||||
|
; (see session.save_path above), then garbage collection does *not*
|
||||||
|
; happen automatically. You will need to do your own garbage
|
||||||
|
; collection through a shell script, cron entry, or some other method.
|
||||||
|
; For example, the following script would is the equivalent of
|
||||||
|
; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
|
||||||
|
; cd /path/to/sessions; find -cmin +24 | xargs rm
|
||||||
|
|
||||||
|
; PHP 4.2 and less have an undocumented feature/bug that allows you to
|
||||||
|
; to initialize a session variable in the global scope, albeit register_globals
|
||||||
|
; is disabled. PHP 4.3 and later will warn you, if this feature is used.
|
||||||
|
; You can disable the feature and the warning separately. At this time,
|
||||||
|
; the warning is only displayed, if bug_compat_42 is enabled.
|
||||||
|
|
||||||
|
session.bug_compat_42 = 1
|
||||||
|
session.bug_compat_warn = 1
|
||||||
|
|
||||||
|
; Check HTTP Referer to invalidate externally stored URLs containing ids.
|
||||||
|
; HTTP_REFERER has to contain this substring for the session to be
|
||||||
|
; considered as valid.
|
||||||
|
session.referer_check =
|
||||||
|
|
||||||
|
; How many bytes to read from the file.
|
||||||
|
session.entropy_length = 0
|
||||||
|
|
||||||
|
; Specified here to create the session id.
|
||||||
|
session.entropy_file =
|
||||||
|
|
||||||
|
;session.entropy_length = 16
|
||||||
|
|
||||||
|
;session.entropy_file = /dev/urandom
|
||||||
|
|
||||||
|
; Set to {nocache,private,public,} to determine HTTP caching aspects
|
||||||
|
; or leave this empty to avoid sending anti-caching headers.
|
||||||
|
session.cache_limiter = nocache
|
||||||
|
|
||||||
|
; Document expires after n minutes.
|
||||||
|
session.cache_expire = 180
|
||||||
|
|
||||||
|
; trans sid support is disabled by default.
|
||||||
|
; Use of trans sid may risk your users security.
|
||||||
|
; Use this option with caution.
|
||||||
|
; - User may send URL contains active session ID
|
||||||
|
; to other person via. email/irc/etc.
|
||||||
|
; - URL that contains active session ID may be stored
|
||||||
|
; in publically accessible computer.
|
||||||
|
; - User may access your site with the same session ID
|
||||||
|
; always using URL stored in browser's history or bookmarks.
|
||||||
|
session.use_trans_sid = 0
|
||||||
|
|
||||||
|
; Select a hash function
|
||||||
|
; 0: MD5 (128 bits)
|
||||||
|
; 1: SHA-1 (160 bits)
|
||||||
|
session.hash_function = 0
|
||||||
|
|
||||||
|
; Define how many bits are stored in each character when converting
|
||||||
|
; the binary hash data to something readable.
|
||||||
|
;
|
||||||
|
; 4 bits: 0-9, a-f
|
||||||
|
; 5 bits: 0-9, a-v
|
||||||
|
; 6 bits: 0-9, a-z, A-Z, "-", ","
|
||||||
|
session.hash_bits_per_character = 4
|
||||||
|
|
||||||
|
; The URL rewriter will look for URLs in a defined set of HTML tags.
|
||||||
|
; form/fieldset are special; if you include them here, the rewriter will
|
||||||
|
; add a hidden <input> field with the info which is otherwise appended
|
||||||
|
; to URLs. If you want XHTML conformity, remove the form entry.
|
||||||
|
; Note that all valid entries require a "=", even if no value follows.
|
||||||
|
url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=,fieldset="
|
||||||
|
|
||||||
|
|
||||||
|
[Assertion]
|
||||||
|
; Assert(expr); active by default.
|
||||||
|
;assert.active = On
|
||||||
|
|
||||||
|
; Issue a PHP warning for each failed assertion.
|
||||||
|
;assert.warning = On
|
||||||
|
|
||||||
|
; Don't bail out by default.
|
||||||
|
;assert.bail = Off
|
||||||
|
|
||||||
|
; User-function to be called if an assertion fails.
|
||||||
|
;assert.callback = 0
|
||||||
|
|
||||||
|
; Eval the expression with current error_reporting(). Set to true if you want
|
||||||
|
; error_reporting(0) around the eval().
|
||||||
|
;assert.quiet_eval = 0
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[exif]
|
||||||
|
; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
|
||||||
|
; With mbstring support this will automatically be converted into the encoding
|
||||||
|
; given by corresponding encode setting. When empty mbstring.internal_encoding
|
||||||
|
; is used. For the decode settings you can distinguish between motorola and
|
||||||
|
; intel byte order. A decode setting cannot be empty.
|
||||||
|
;exif.encode_unicode = ISO-8859-15
|
||||||
|
;exif.decode_unicode_motorola = UCS-2BE
|
||||||
|
;exif.decode_unicode_intel = UCS-2LE
|
||||||
|
;exif.encode_jis =
|
||||||
|
;exif.decode_jis_motorola = JIS
|
||||||
|
;exif.decode_jis_intel = JIS
|
||||||
|
|
19
openwrt/package/php4/files/php.init
Normal file
19
openwrt/package/php4/files/php.init
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
export PHP_FCGI_CHILDREN=''
|
||||||
|
PORT=1026
|
||||||
|
BIN=/usr/sbin/php
|
||||||
|
|
||||||
|
case $1 in
|
||||||
|
start)
|
||||||
|
$BIN -b $PORT &
|
||||||
|
;;
|
||||||
|
stop)
|
||||||
|
kill `pidof php`
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "usage: $0 (start|stop)"
|
||||||
|
exit 1
|
||||||
|
esac
|
||||||
|
|
||||||
|
exit $?
|
1
openwrt/package/php4/ipkg/php4-cgi.conffiles
Normal file
1
openwrt/package/php4/ipkg/php4-cgi.conffiles
Normal file
@ -0,0 +1 @@
|
|||||||
|
/etc/php.ini
|
9
openwrt/package/php4/ipkg/php4-cgi.control
Normal file
9
openwrt/package/php4/ipkg/php4-cgi.control
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
Package: php4-cgi
|
||||||
|
Priority: optional
|
||||||
|
Section: net
|
||||||
|
Version: [TBDL]
|
||||||
|
Architecture: [TBDL]
|
||||||
|
Maintainer: Anael Orlinski <anael.orlinski@gmail.com>, Nico <nthill@free.fr>
|
||||||
|
Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/php4/
|
||||||
|
Description: PHP4 compiled as for CGI
|
||||||
|
Provides: php4
|
1
openwrt/package/php4/ipkg/php4-cli.conffiles
Normal file
1
openwrt/package/php4/ipkg/php4-cli.conffiles
Normal file
@ -0,0 +1 @@
|
|||||||
|
/etc/php.ini
|
9
openwrt/package/php4/ipkg/php4-cli.control
Normal file
9
openwrt/package/php4/ipkg/php4-cli.control
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
Package: php4-cli
|
||||||
|
Priority: optional
|
||||||
|
Section: net
|
||||||
|
Version: [TBDL]
|
||||||
|
Architecture: [TBDL]
|
||||||
|
Maintainer: Anael Orlinski <anael.orlinski@gmail.com>, Nico <nthill@free.fr>
|
||||||
|
Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/php4/
|
||||||
|
Description: PHP4 CLI (Command Line Interface)
|
||||||
|
Provides: php4
|
2
openwrt/package/php4/ipkg/php4-fastcgi.conffiles
Normal file
2
openwrt/package/php4/ipkg/php4-fastcgi.conffiles
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
/etc/php.ini
|
||||||
|
/etc/init.d/php
|
9
openwrt/package/php4/ipkg/php4-fastcgi.control
Normal file
9
openwrt/package/php4/ipkg/php4-fastcgi.control
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
Package: php4-fastcgi
|
||||||
|
Priority: optional
|
||||||
|
Section: net
|
||||||
|
Version: [TBDL]
|
||||||
|
Architecture: [TBDL]
|
||||||
|
Maintainer: Anael Orlinski <anael.orlinski@gmail.com>, Nico <nthill@free.fr>
|
||||||
|
Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/php4/
|
||||||
|
Description: PHP4 compiled for FastCGI (for use with libhttpd-fastcgi)
|
||||||
|
Provides: php4
|
9
openwrt/package/php4/ipkg/php4-mod-ftp.control
Normal file
9
openwrt/package/php4/ipkg/php4-mod-ftp.control
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
Package: php4-mod-ftp
|
||||||
|
Priority: optional
|
||||||
|
Section: net
|
||||||
|
Version: [TBDL]
|
||||||
|
Architecture: [TBDL]
|
||||||
|
Maintainer: Anael Orlinski <anael.orlinski@gmail.com>, Nico <nthill@free.fr>
|
||||||
|
Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/php4/
|
||||||
|
Description: FTP module for PHP4
|
||||||
|
Depends: php4
|
9
openwrt/package/php4/ipkg/php4-mod-gd.control
Normal file
9
openwrt/package/php4/ipkg/php4-mod-gd.control
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
Package: php4-mod-gd
|
||||||
|
Priority: optional
|
||||||
|
Section: net
|
||||||
|
Version: [TBDL]
|
||||||
|
Architecture: [TBDL]
|
||||||
|
Maintainer: Anael Orlinski <anael.orlinski@gmail.com>, Nico <nthill@free.fr>
|
||||||
|
Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/php4/
|
||||||
|
Description: GD module for PHP4
|
||||||
|
Depends: php4, libgd, libpng
|
9
openwrt/package/php4/ipkg/php4-mod-ldap.control
Normal file
9
openwrt/package/php4/ipkg/php4-mod-ldap.control
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
Package: php4-mod-ldap
|
||||||
|
Priority: optional
|
||||||
|
Section: net
|
||||||
|
Version: [TBDL]
|
||||||
|
Architecture: [TBDL]
|
||||||
|
Maintainer: Anael Orlinski <anael.orlinski@gmail.com>, Nico <nthill@free.fr>
|
||||||
|
Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/php4/
|
||||||
|
Description: LDAP module for PHP4
|
||||||
|
Depends: php4, libopenldap
|
9
openwrt/package/php4/ipkg/php4-mod-mysql.control
Normal file
9
openwrt/package/php4/ipkg/php4-mod-mysql.control
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
Package: php4-mod-mysql
|
||||||
|
Priority: optional
|
||||||
|
Section: net
|
||||||
|
Version: [TBDL]
|
||||||
|
Architecture: [TBDL]
|
||||||
|
Maintainer: Anael Orlinski <anael.orlinski@gmail.com>, Nico <nthill@free.fr>
|
||||||
|
Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/php4/
|
||||||
|
Description: MySQL module for PHP4
|
||||||
|
Depends: php4, libmysqlclient
|
9
openwrt/package/php4/ipkg/php4-mod-openssl.control
Normal file
9
openwrt/package/php4/ipkg/php4-mod-openssl.control
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
Package: php4-mod-openssl
|
||||||
|
Priority: optional
|
||||||
|
Section: net
|
||||||
|
Version: [TBDL]
|
||||||
|
Architecture: [TBDL]
|
||||||
|
Maintainer: Anael Orlinski <anael.orlinski@gmail.com>, Nico <nthill@free.fr>
|
||||||
|
Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/php4/
|
||||||
|
Description: OpenSSL module for PHP4
|
||||||
|
Depends: php4, libopenssl
|
9
openwrt/package/php4/ipkg/php4-mod-pcre.control
Normal file
9
openwrt/package/php4/ipkg/php4-mod-pcre.control
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
Package: php4-mod-pcre
|
||||||
|
Priority: optional
|
||||||
|
Section: net
|
||||||
|
Version: [TBDL]
|
||||||
|
Architecture: [TBDL]
|
||||||
|
Maintainer: Anael Orlinski <anael.orlinski@gmail.com>, Nico <nthill@free.fr>
|
||||||
|
Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/php4/
|
||||||
|
Description: PCRE module for PHP4
|
||||||
|
Depends: php4, libpcre
|
9
openwrt/package/php4/ipkg/php4-mod-pgsql.control
Normal file
9
openwrt/package/php4/ipkg/php4-mod-pgsql.control
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
Package: php4-mod-pgsql
|
||||||
|
Priority: optional
|
||||||
|
Section: net
|
||||||
|
Version: [TBDL]
|
||||||
|
Architecture: [TBDL]
|
||||||
|
Maintainer: Anael Orlinski <anael.orlinski@gmail.com>, Nico <nthill@free.fr>
|
||||||
|
Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/php4/
|
||||||
|
Description: PostgreSQL module for PHP4
|
||||||
|
Depends: php4, libpq
|
9
openwrt/package/php4/ipkg/php4-mod-session.control
Normal file
9
openwrt/package/php4/ipkg/php4-mod-session.control
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
Package: php4-mod-session
|
||||||
|
Priority: optional
|
||||||
|
Section: net
|
||||||
|
Version: [TBDL]
|
||||||
|
Architecture: [TBDL]
|
||||||
|
Maintainer: Anael Orlinski <anael.orlinski@gmail.com>, Nico <nthill@free.fr>
|
||||||
|
Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/php4/
|
||||||
|
Description: Sessions module for PHP4
|
||||||
|
Depends: php4
|
9
openwrt/package/php4/ipkg/php4-mod-sockets.control
Normal file
9
openwrt/package/php4/ipkg/php4-mod-sockets.control
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
Package: php4-mod-sockets
|
||||||
|
Priority: optional
|
||||||
|
Section: net
|
||||||
|
Version: [TBDL]
|
||||||
|
Architecture: [TBDL]
|
||||||
|
Maintainer: Anael Orlinski <anael.orlinski@gmail.com>, Nico <nthill@free.fr>
|
||||||
|
Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/php4/
|
||||||
|
Description: Sockets module for PHP4
|
||||||
|
Depends: php4
|
9
openwrt/package/php4/ipkg/php4-mod-sqlite.control
Normal file
9
openwrt/package/php4/ipkg/php4-mod-sqlite.control
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
Package: php4-mod-sqlite
|
||||||
|
Priority: optional
|
||||||
|
Section: net
|
||||||
|
Version: [TBDL]
|
||||||
|
Architecture: [TBDL]
|
||||||
|
Maintainer: Anael Orlinski <anael.orlinski@gmail.com>, Nico <nthill@free.fr>
|
||||||
|
Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/php4/
|
||||||
|
Description: SQLite module for PHP4
|
||||||
|
Depends: php4, libsqlite2
|
9
openwrt/package/php4/ipkg/php4-mod-xml.control
Normal file
9
openwrt/package/php4/ipkg/php4-mod-xml.control
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
Package: php4-mod-xml
|
||||||
|
Priority: optional
|
||||||
|
Section: net
|
||||||
|
Version: [TBDL]
|
||||||
|
Architecture: [TBDL]
|
||||||
|
Maintainer: Anael Orlinski <anael.orlinski@gmail.com>, Nico <nthill@free.fr>
|
||||||
|
Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/php4/
|
||||||
|
Description: XML module for PHP4
|
||||||
|
Depends: php4
|
17705
openwrt/package/php4/patches/php-4.3.11-sqlite-1.0.patch
Normal file
17705
openwrt/package/php4/patches/php-4.3.11-sqlite-1.0.patch
Normal file
File diff suppressed because it is too large
Load Diff
83
openwrt/package/php4/patches/php4_configure.patch
Normal file
83
openwrt/package/php4/patches/php4_configure.patch
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
--- php-4.3.11/configure 2005-03-30 16:35:34.000000000 +0200
|
||||||
|
+++ php-4.3.11-patched/configure 2005-06-22 23:34:35.000000000 +0200
|
||||||
|
@@ -12192,7 +12192,7 @@
|
||||||
|
ac_libs=$LIBS
|
||||||
|
LIBS="$LIBS -ldl"
|
||||||
|
if test "$cross_compiling" = yes; then
|
||||||
|
- found=no
|
||||||
|
+ found=yes
|
||||||
|
else
|
||||||
|
cat > conftest.$ac_ext <<EOF
|
||||||
|
#line 12199 "configure"
|
||||||
|
@@ -14062,7 +14062,7 @@
|
||||||
|
|
||||||
|
|
||||||
|
if test "$cross_compiling" = yes; then
|
||||||
|
- { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
|
||||||
|
+ { echo "configure: error: can not run test program while cross compiling" 1>&2; }
|
||||||
|
else
|
||||||
|
cat > conftest.$ac_ext <<EOF
|
||||||
|
#line 14069 "configure"
|
||||||
|
@@ -15077,7 +15077,7 @@
|
||||||
|
if { (eval echo configure:15078: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
||||||
|
rm -rf conftest*
|
||||||
|
if test "$cross_compiling" = yes; then
|
||||||
|
- { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
|
||||||
|
+ { echo "configure: error: can not run test program while cross compiling" 1>&2; }
|
||||||
|
else
|
||||||
|
cat > conftest.$ac_ext <<EOF
|
||||||
|
#line 15084 "configure"
|
||||||
|
@@ -15574,7 +15574,7 @@
|
||||||
|
rm -fr conftest*
|
||||||
|
|
||||||
|
if test "$cross_compiling" = yes; then
|
||||||
|
- { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
|
||||||
|
+ { echo "configure: error: can not run test program while cross compiling" 1>&2; }
|
||||||
|
else
|
||||||
|
cat > conftest.$ac_ext <<EOF
|
||||||
|
#line 15581 "configure"
|
||||||
|
@@ -41304,7 +41304,7 @@
|
||||||
|
echo $ac_n "checking if iconv supports errno""... $ac_c" 1>&6
|
||||||
|
echo "configure:41306: checking if iconv supports errno" >&5
|
||||||
|
if test "$cross_compiling" = yes; then
|
||||||
|
- { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
|
||||||
|
+ { echo "configure: error: can not run test program while cross compiling" 1>&2; }
|
||||||
|
else
|
||||||
|
cat > conftest.$ac_ext <<EOF
|
||||||
|
#line 41311 "configure"
|
||||||
|
@@ -43584,7 +43584,7 @@
|
||||||
|
old_LIBS=$LIBS
|
||||||
|
LIBS="$TST_LIBS $LIBS"
|
||||||
|
if test "$cross_compiling" = yes; then
|
||||||
|
- { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
|
||||||
|
+ { echo "configure: error: can not run test program while cross compiling" 1>&2; }
|
||||||
|
else
|
||||||
|
cat > conftest.$ac_ext <<EOF
|
||||||
|
#line 43591 "configure"
|
||||||
|
@@ -43643,7 +43643,7 @@
|
||||||
|
old_LIBS=$LIBS
|
||||||
|
LIBS="$TST_LIBS $LIBS"
|
||||||
|
if test "$cross_compiling" = yes; then
|
||||||
|
- { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
|
||||||
|
+ { echo "configure: error: can not run test program while cross compiling" 1>&2; }
|
||||||
|
else
|
||||||
|
cat > conftest.$ac_ext <<EOF
|
||||||
|
#line 43650 "configure"
|
||||||
|
@@ -89183,7 +89183,7 @@
|
||||||
|
old_CPPFLAGS=$CPPFLAGS
|
||||||
|
CPPFLAGS="$CPPFLAGS -I$XSLT_DIR/include"
|
||||||
|
if test "$cross_compiling" = yes; then
|
||||||
|
- { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
|
||||||
|
+ { echo "configure: error: can not run test program while cross compiling" 1>&2; }
|
||||||
|
else
|
||||||
|
cat > conftest.$ac_ext <<EOF
|
||||||
|
#line 89190 "configure"
|
||||||
|
@@ -98257,7 +98257,7 @@
|
||||||
|
link_all_deplibs=$link_all_deplibs
|
||||||
|
|
||||||
|
# Compile-time system search path for libraries
|
||||||
|
-sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
|
||||||
|
+sys_lib_search_path_spec=
|
||||||
|
|
||||||
|
# Run-time system search path for libraries
|
||||||
|
sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
|
23
openwrt/package/php4/patches/php4_dns_skipname.patch
Normal file
23
openwrt/package/php4/patches/php4_dns_skipname.patch
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
--- php-4.3.9.orig/ext/standard/dns.c 2003-09-01 16:37:46.000000000 -0600
|
||||||
|
+++ php-4.3.9/ext/standard/dns.c 2004-11-30 23:53:55.000000000 -0700
|
||||||
|
@@ -207,7 +207,7 @@
|
||||||
|
}
|
||||||
|
/* }}} */
|
||||||
|
|
||||||
|
-#if HAVE_RES_SEARCH && !(defined(__BEOS__)||defined(PHP_WIN32) || defined(NETWARE))
|
||||||
|
+#if HAVE_RES_SEARCH && HAVE_DN_SKIPNAME && !(defined(__BEOS__)||defined(PHP_WIN32) || defined(NETWARE))
|
||||||
|
|
||||||
|
/* {{{ proto int checkdnsrr(string host [, string type])
|
||||||
|
Check DNS records corresponding to a given Internet host name or IP address */
|
||||||
|
|
||||||
|
--- php-4.3.9.orig/ext/standard/basic_functions.c 2004-07-30 10:52:35.000000000 -0600
|
||||||
|
+++ php-4.3.9/ext/standard/basic_functions.c 2004-11-30 23:56:42.000000000 -0700
|
||||||
|
@@ -447,7 +447,7 @@
|
||||||
|
PHP_FE(gethostbyname, NULL)
|
||||||
|
PHP_FE(gethostbynamel, NULL)
|
||||||
|
|
||||||
|
-#if HAVE_RES_SEARCH && !(defined(__BEOS__) || defined(PHP_WIN32) || defined(NETWARE))
|
||||||
|
+#if HAVE_RES_SEARCH && HAVE_DN_SKIPNAME && !(defined(__BEOS__)||defined(PHP_WIN32) || defined(NETWARE))
|
||||||
|
PHP_FE(checkdnsrr, NULL)
|
||||||
|
PHP_FE(getmxrr,second_and_third_args_force_ref)
|
||||||
|
#endif
|
Loading…
Reference in New Issue
Block a user