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 | e2e1be02c5e02c3b5d9b3529199c3880a486fe58 (patch) | |
tree | 7c6373a3f2110bf1cfa1fbc561c4e13c5e49b2b5 /package/Makefile | |
parent | 2145ffefc739bad8a613dc70ccab107c062d7278 (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/openwrt@1948 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 ef6a712730..99447a8d3d 100644 --- a/package/Makefile +++ b/package/Makefile @@ -293,9 +293,15 @@ openvpn-compile: lzo-compile endif php4-compile: openssl-compile zlib-compile +ifneq ($(BR2_PACKAGE_PHP4_MOD_CURL),) +php4-compile: curl-compile +endif ifneq ($(BR2_PACKAGE_PHP4_MOD_GD),) php4-compile: libgd-compile libpng-compile endif +ifneq ($(BR2_PACKAGE_PHP4_MOD_GMP),) +php4-compile: gmp-compile +endif ifneq ($(BR2_PACKAGE_PHP4_MOD_LDAP),) php4-compile: openldap-compile endif |