From b6a8953297be364ac84ca7afb73c011cc00aee16 Mon Sep 17 00:00:00 2001 From: Frank Morgner Date: Sat, 8 Mar 2014 02:45:43 +0100 Subject: [PATCH] export additional symbols from OpenSC when cross compiling --- npa/cross/Makefile.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/npa/cross/Makefile.am b/npa/cross/Makefile.am index a6bec1c..f7dea87 100644 --- a/npa/cross/Makefile.am +++ b/npa/cross/Makefile.am @@ -63,6 +63,8 @@ $(LIBNPA): $(OPENPACE_MAKEFILE) TARGETDIR=$(TARGETDIR) \ LIBEAC=$(LIBEAC) @echo Configuring OpenSC + grep _sc_match_atr $(OPENSC)/src/libopensc/libopensc.exports || echo _sc_match_atr >> $(OPENSC)/src/libopensc/libopensc.exports + grep sc_apdu_get_octets $(OPENSC)/src/libopensc/libopensc.exports || echo sc_apdu_get_octets >> $(OPENSC)/src/libopensc/libopensc.exports cd $(OPENSC) && ./configure \ --prefix=/ \ --host=$(TOOL) --target=$(TOOL) \