diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-09-19 23:06:12 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-09-19 23:06:12 +0000 |
commit | f05ca573eafe7c7f2d937d25a581bde22bc9ba88 (patch) | |
tree | 7898312d10da75e90c33b3f9bcbee43d2e2ef835 /openwrt/package/php4/Makefile | |
parent | 2ad7eff7cde70d12f93d80636d54b75176f8e25e (diff) |
enable all packages when DEVELOPER=1,
add curl and gmp extensions,
fix gd extension build
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1948 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/php4/Makefile')
-rw-r--r-- | openwrt/package/php4/Makefile | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/openwrt/package/php4/Makefile b/openwrt/package/php4/Makefile index a152f73749..2644aa4451 100644 --- a/openwrt/package/php4/Makefile +++ b/openwrt/package/php4/Makefile @@ -55,13 +55,29 @@ PKG_CONFIGURE_OPTS:= \ --with-zlib="$(STAGING_DIR)/usr" \ --with-zlib-dir="$(STAGING_DIR)/usr" \ +ifneq ($(BR2_PACKAGE_PHP4_MOD_CURL),) +PKG_CONFIGURE_OPTS+= --with-curl=shared,"$(STAGING_DIR)/usr" +else +PKG_CONFIGURE_OPTS+= --without-curl +endif ifneq ($(BR2_PACKAGE_PHP4_MOD_GD),) PKG_CONFIGURE_OPTS+= --with-gd=shared,"$(STAGING_DIR)/usr" \ + --without-freetype-dir \ + --without-jpeg-dir \ + --with-png-dir="$(STAGING_DIR)/usr" \ + --without-xpm-dir \ + --without-ttf \ + --without-t1lib \ --enable-gd-native-ttf \ - --with-png-dir="$(STAGING_DIR)/usr" + --disable-gd-jis-conv else PKG_CONFIGURE_OPTS+= --without-gd endif +ifneq ($(BR2_PACKAGE_PHP4_MOD_GMP),) +PKG_CONFIGURE_OPTS+= --with-gmp=shared,"$(STAGING_DIR)/usr" +else +PKG_CONFIGURE_OPTS+= --without-gmp +endif ifneq ($(BR2_PACKAGE_PHP4_MOD_LDAP),) PKG_CONFIGURE_OPTS+= --with-ldap=shared,"$(STAGING_DIR)/usr" --with-ldap-sasl="$(STAGING_DIR)/usr" @@ -99,8 +115,10 @@ $(eval $(call PKG_template,PHP4_CLI,php4-cli,$(PKG_VERSION)-$(PKG_RELEASE),$(ARC $(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_CURL,php4-mod-curl,$(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_GMP,php4-mod-gmp,$(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))) @@ -111,8 +129,10 @@ $(eval $(call PKG_template,PHP4_MOD_SOCKETS,php4-mod-sockets,$(PKG_VERSION)-$(PK $(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_CURL,curl)) $(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_GMP,gmp)) $(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)) |