From f6ab3e1e99aa0e8ff5fd4dcc7d12958c7aa25c2c Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Sun, 11 Sep 2016 23:49:19 +0200 Subject: [PATCH] package/php-ssh2: fix kconfig circular deps after libssh2 fix After we simplified the libssh2 dependencies, the new dependencies were not propagated to the php-ssh2 package, causing circular dependencies: package/openssl/Config.in:1:error: recursive dependency detected! package/openssl/Config.in:1: symbol BR2_PACKAGE_OPENSSL is selected by BR2_PACKAGE_LIBSSH2 package/libssh2/Config.in:1: symbol BR2_PACKAGE_LIBSSH2 is selected by BR2_PACKAGE_PHP_SSH2 package/php-ssh2/Config.in:1: symbol BR2_PACKAGE_PHP_SSH2 depends on BR2_PACKAGE_OPENSSL Just drop the now-useless dependency inherited from libssh2: libssh2 now has no dependency. Reported-by: Thomas Petazzoni Signed-off-by: "Yann E. MORIN" Cc: Arnout Vandecappelle Acked-by: Arnout Vandecappelle (Essensium/Mind) Signed-off-by: Thomas Petazzoni --- package/php-ssh2/Config.in | 2 -- 1 file changed, 2 deletions(-) diff --git a/package/php-ssh2/Config.in b/package/php-ssh2/Config.in index c795dd5277..b457900740 100644 --- a/package/php-ssh2/Config.in +++ b/package/php-ssh2/Config.in @@ -1,8 +1,6 @@ config BR2_PACKAGE_PHP_SSH2 bool "php-ssh2" depends on BR2_PACKAGE_PHP - depends on BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS \ - && !BR2_PACKAGE_OPENSSL # libssh2, libgcrypt select BR2_PACKAGE_LIBSSH2 help PHP bindings for the libssh2 library.