Commit 929c3e89 authored by Simon Dawson's avatar Simon Dawson Committed by Peter Korsgaard
Browse files

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: default avatarSimon Dawson <spdawson@gmail.com>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 1a4b4827
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_LIBFREEFARE
	bool "libfreefare"
	select BR2_PACKAGE_OPENSSL
	select BR2_PACKAGE_LIBNFC
	help
	  Library for high level manipulation of MIFARE cards.
+1 −1
Original line number Diff line number Diff line
@@ -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))