summaryrefslogtreecommitdiff
blob: c7ddb87a5a7fe628f18c052558e997911fd94282 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
From a0822b820d59a53b0aab87cc12c4d1eae2228561 Mon Sep 17 00:00:00 2001
From: Alon Bar-Lev <alon.barlev@gmail.com>
Date: Fri, 17 Jun 2016 18:58:05 +0300
Subject: [PATCH] build: use openct instead of embedded binary ctapi

Signed-off-by: Alon Bar-Lev <alon.barlev@gmail.com>
---
 Makefile     | 4 ++--
 ifdhandler.c | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile
index cdba2b6..319449a 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@ clean:
 	rm -f test *.o *.lo *.so
 
 lib:  $(OBJ)
-	$(LD) -G ifdhandler.o lib/libctapi.a -o libslb_rf72.so
+	$(CC) $(LDFLAGS) -shared `pkg-config --libs-only-L libopenct` -lopenctapi ifdhandler.o -o libslb_rf72.so
 
 ifdhandler.o: ifdhandler.h ifdhandler.c
-	$(CC) $(CFLAGS) -c ifdhandler.c $(INCLUDES)
+	$(CC) $(CFLAGS) `pkg-config --cflags libopenct` -fPIC -DHAVE_PTHREAD_H -c ifdhandler.c $(INCLUDES)
diff --git a/ifdhandler.c b/ifdhandler.c
index cbb3a65..256605e 100644
--- a/ifdhandler.c
+++ b/ifdhandler.c
@@ -29,7 +29,7 @@
 #include "pcscdefines.h"
 #include "ifdhandler.h"
 #include <ctapidefines.h>
-#include <ctapi.h>
+#include <openct/ctapi.h>
 #include <ctbcs.h>
 #include <stdio.h>
 #include <string.h>
-- 
2.7.3