summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@gmail.com>2015-11-24 13:46:32 +0100
committerMarc-André Lureau <marcandre.lureau@gmail.com>2015-11-24 13:46:32 +0100
commitd134e0a7a919ac9b0f899966bf1b7a098a75559e (patch)
treee6e4615ad375400fab6e1bca8ec15d9992726434 /configure.ac
parent829f914305033a1bdf2f89754904b03d7da99e84 (diff)
build-sys: show correct pcsc summary
Show no if PCSC is disabled Signed-off-by: Marc-André Lureau <marcandre.lureau@gmail.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index ca945b0..c8003a9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -50,6 +50,8 @@ if test "x$enable_pcsc" != "xno"; then
if test "x$have_pcsc" = "xyes"; then
enable_pcsc=yes
AC_DEFINE([ENABLE_PCSC], 1, [pcsc support])
+ else
+ enable_pcsc=no
fi
fi
AM_CONDITIONAL(ENABLE_PCSC, test "x$enable_pcsc" = "xyes")