From: florian Date: Wed, 23 Feb 2011 22:24:39 +0000 (+0000) Subject: [package] php5: add missing dependency on libsqlite3/libpthread (#7224) X-Git-Url: http://git.archive.openwrt.org/?a=commitdiff_plain;h=018d2eb2641f137376188a8092a88d1773e2c7c6;p=packages.git [package] php5: add missing dependency on libsqlite3/libpthread (#7224) The binaries are already dependent on sqlite3 and pthread, not only the corresponding php modules. This closes #7724. Signed-off-by: Michael Heimpold git-svn-id: svn://svn.openwrt.org/openwrt/packages@25674 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/lang/php5/Makefile b/lang/php5/Makefile index 4bb2180ad..8022f6315 100644 --- a/lang/php5/Makefile +++ b/lang/php5/Makefile @@ -54,6 +54,9 @@ define Package/php5 ifneq ($(CONFIG_PHP5_LIBXML),) DEPENDS+= +libxml2 endif + ifneq ($(CONFIG_PACKAGE_php5-mod-sqlite3)$(CONFIG_PACKAGE_php5-mod-pdo-sqlite),) + DEPENDS+= +libsqlite3 +libpthread + endif endef define Package/php5/description