mysql: Add optional OpenSSL dependency

Make sure OpenSSL is built before mysql.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Bernd Kuhls 2014-05-17 12:32:44 +02:00 committed by Peter Korsgaard
parent 221b52b3ab
commit 9587eea148
1 changed files with 4 additions and 0 deletions

View File

@ -33,6 +33,10 @@ MYSQL_CONF_OPT = \
--enable-thread-safe-client \
--disable-mysql-maintainer-mode
ifeq ($(BR2_PACKAGE_OPENSSL),y)
MYSQL_DEPENDENCIES += openssl
endif
ifeq ($(BR2_PACKAGE_ZLIB),y)
MYSQL_DEPENDENCIES += zlib
endif