diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-07-04 17:03:18 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-07-04 17:03:18 +0000 |
commit | d26d551aa50fbf28a39ab7d254d438e7ea88c132 (patch) | |
tree | 001af1f942deb147234a69c37d20c529c594842a /openwrt/package/Makefile | |
parent | 6c0eacad74056fad5a269621c291f68eb32ee81d (diff) | |
download | mtk-20170518-d26d551aa50fbf28a39ab7d254d438e7ea88c132.zip mtk-20170518-d26d551aa50fbf28a39ab7d254d438e7ea88c132.tar.gz mtk-20170518-d26d551aa50fbf28a39ab7d254d438e7ea88c132.tar.bz2 |
Add php4 package (Thanks aorlinsk and enzo for the help)
SVN-Revision: 1334
Diffstat (limited to 'openwrt/package/Makefile')
-rw-r--r-- | openwrt/package/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/openwrt/package/Makefile b/openwrt/package/Makefile index 4e8f5de..4c743b9 100644 --- a/openwrt/package/Makefile +++ b/openwrt/package/Makefile @@ -85,6 +85,7 @@ package-$(BR2_PACKAGE_OPENSWAN) += openswan package-$(BR2_PACKAGE_OPENVPN) += openvpn package-$(BR2_PACKAGE_OSIRIS) += osiris package-$(BR2_PACKAGE_PCRE) += pcre +package-$(BR2_PACKAGE_PHP4) += php4 package-$(BR2_PACKAGE_PICOCOM) += picocom package-$(BR2_PACKAGE_PMACCT) += pmacct package-$(BR2_PACKAGE_POPT) += popt @@ -211,6 +212,28 @@ ifeq ($(BR2_PACKAGE_OPENVPN_LZO),y) openvpn-compile: lzo-compile 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 ifneq ($(BR2_PACKAGE_PMACCT_MYSQL),) pmacct-compile: mysql-compile |