From 7817994c2a075b38d03d7de9191337113572a847 Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Wed, 23 Feb 2011 22:24:39 +0000 Subject: [PATCH] [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 SVN-Revision: 25674 --- lang/php5/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lang/php5/Makefile b/lang/php5/Makefile index 4bb2180ad4..8022f63154 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 -- 2.30.2