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 | 97fdace205c77de0c9adb09d29e4cc59dc4edf40 (patch) | |
tree | abb4d534ff916e34ef1c1587833575f59bdbe082 /package/Makefile | |
parent | eb378ed9997aa830222e000d24a248ee6fbaf7e9 (diff) | |
download | upstream-97fdace205c77de0c9adb09d29e4cc59dc4edf40.tar.gz upstream-97fdace205c77de0c9adb09d29e4cc59dc4edf40.tar.bz2 upstream-97fdace205c77de0c9adb09d29e4cc59dc4edf40.zip |
update to new upstream release (v5.0.5),
enable all packages when DEVELOPER=1,
add curl and gmp extensions,
fix gd extension build
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1950 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/Makefile')
-rw-r--r-- | package/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/package/Makefile b/package/Makefile index 99447a8d3d..0ecc0402dc 100644 --- a/package/Makefile +++ b/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 |