libfreefare: add missing openssl dependency

If openssl is not selected, configuration fails for the libfreefare package
as follows.

  configure: error: Cannot find libcrypto.

This patch adds the missing dependency on openssl.

[Peter: use select instead of depends on]
Signed-off-by: Simon Dawson <spdawson@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Simon Dawson 2012-06-16 23:07:40 +00:00 committed by Peter Korsgaard
parent 1a4b482776
commit 929c3e89a6
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
config BR2_PACKAGE_LIBFREEFARE
bool "libfreefare"
select BR2_PACKAGE_OPENSSL
select BR2_PACKAGE_LIBNFC
help
Library for high level manipulation of MIFARE cards.

View File

@ -5,6 +5,6 @@
#############################################################
LIBFREEFARE_VERSION = 0.3.2
LIBFREEFARE_SITE = http://nfc-tools.googlecode.com/files
LIBFREEFARE_DEPENDENCIES = libnfc
LIBFREEFARE_DEPENDENCIES = libnfc openssl
$(eval $(call AUTOTARGETS))