From 8a41456889a43dde02c29b0ccc1b95d088974e8c Mon Sep 17 00:00:00 2001 From: Dominik Date: Wed, 14 May 2014 04:14:54 +0200 Subject: [PATCH] Explicitly set OPENSSL_CFLAGS and OPENSSL_LIBS for ccid --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5bda328..307a134 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,5 +17,5 @@ script: - cd /tmp && git clone https://github.com/frankmorgner/openpace && cd openpace && autoreconf -vsi && ./configure --enable-openssl-install --prefix=$PREFIX && make install && cd $TRAVIS_BUILD_DIR - cd npa/src/opensc && cp configure.ac.in configure.ac && autoreconf -vsi && ./configure --prefix=$PREFIX --enable-sm && make install && cd ../../.. # - cd npa && autoreconf -vsi && ./configure OPENSC_LIBS="-L$PREFIX/lib -lopensc -lcrypto" && make -# # Build ccid -# - cd ccid && autoreconf -vsi && ./configure OPENSC_LIBS="-L$PREFIX/lib -lopensc" && make + # Build ccid + - cd ccid && autoreconf -vsi && ./configure OPENSSL_CFLAGS="-I$PREFIX/include" OPENSSL_LIBS="-L$PREFIX/lib -lcrypto" OPENSC_LIBS="-L$PREFIX/lib -lopensc" && make