diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-09-19 23:11:06 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-09-19 23:11:06 +0000 |
commit | f12e921023f559d83e5dcb7b850d4e6289c7e89a (patch) | |
tree | 931c0e90f5f485ced9604763b70ca21c927ebfd8 /openwrt/package/Makefile | |
parent | af0d7914b8ce9b61a86ca41b0bebcd85d0d09f64 (diff) | |
download | mtk-20170518-f12e921023f559d83e5dcb7b850d4e6289c7e89a.zip mtk-20170518-f12e921023f559d83e5dcb7b850d4e6289c7e89a.tar.gz mtk-20170518-f12e921023f559d83e5dcb7b850d4e6289c7e89a.tar.bz2 |
update to new upstream release (v5.0.5), enable all packages when DEVELOPER=1, add curl and gmp extensions, fix gd extension build
SVN-Revision: 1950
Diffstat (limited to 'openwrt/package/Makefile')
-rw-r--r-- | openwrt/package/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/openwrt/package/Makefile b/openwrt/package/Makefile index 99447a8..0ecc040 100644 --- a/openwrt/package/Makefile +++ b/openwrt/package/Makefile @@ -322,9 +322,15 @@ php4-compile: expat-compile endif php5-compile: openssl-compile zlib-compile +ifneq ($(BR2_PACKAGE_PHP5_MOD_CURL),) +php5-compile: curl-compile +endif ifneq ($(BR2_PACKAGE_PHP5_MOD_GD),) php5-compile: libgd-compile libpng-compile endif +ifneq ($(BR2_PACKAGE_PHP5_MOD_GMP),) +php5-compile: gmp-compile +endif ifneq ($(BR2_PACKAGE_PHP5_MOD_LDAP),) php5-compile: openldap-compile endif |