diff options
author | Harald Welte <laforge@gnumonks.org> | 2017-01-15 17:53:23 +0100 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2017-01-15 18:04:02 +0100 |
commit | 1a7d64ccd12bb73852f665af0bf853351a0717f9 (patch) | |
tree | 08eeb5e426f162f902bf7cae0001f127c7f462db | |
parent | 1c67e754b8e5bd25f966152d9bca347dbc75ec4e (diff) |
configure.ac: Disable PCSC related code on EMBEDDED
The EMBEDDED conditional is used for building inside 'bare iron'
embedded devices like OsmocomBB phones. There's no PC/SC in them.
Change-Id: I2ef7561d7fdb1ef1c060f8ac73d8588fc0f8eb3f
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index bbbe241e..20b5e635 100644 --- a/configure.ac +++ b/configure.ac @@ -209,6 +209,7 @@ then AM_CONDITIONAL(ENABLE_CTRL, false) AM_CONDITIONAL(ENABLE_UTILITIES, false) AM_CONDITIONAL(ENABLE_GB, false) + AM_CONDITIONAL(ENABLE_PCSC, false) AC_DEFINE([PANIC_INFLOOP],[1],[Use infinite loop on panic rather than fprintf/abort]) fi |