aboutsummaryrefslogtreecommitdiffstats
path: root/src/sim
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-10-27 12:00:37 +0100
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-10-27 12:00:37 +0100
commitb0310dd376aa4a5058e2601800b81ac2ff4cf421 (patch)
tree39f11ad5ac01b0643ae88c4910ec2c895881aa41 /src/sim
parent33e940b862197cdbdc9f4e5781aa2d3df3a0ea52 (diff)
pcsc: Fix the include path
The pkg-config file already points into the PCSC directory. This is needed for FreeBSD where /usr/local/include is not in the default compiler search path. On Debian $ pkg-config --cflags libpcsclite -pthread -I/usr/include/PCSC On FreeBSD $ pkg-config --cflags libpcsclite -I/usr/local/include/PCSC -D_THREAD_SAFE -pthread
Diffstat (limited to 'src/sim')
-rw-r--r--src/sim/reader_pcsc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sim/reader_pcsc.c b/src/sim/reader_pcsc.c
index 5e670912..c52df31f 100644
--- a/src/sim/reader_pcsc.c
+++ b/src/sim/reader_pcsc.c
@@ -29,8 +29,8 @@
#include <osmocom/core/talloc.h>
#include <osmocom/sim/sim.h>
-#include <PCSC/wintypes.h>
-#include <PCSC/winscard.h>
+#include <wintypes.h>
+#include <winscard.h>
#include "sim_int.h"