summarylogtreecommitdiffstats
path: root/fix-openssl.patch
blob: b0dc30d3c25d51da63365b7d6cb0c8e94f739e5a (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
diff --git a/CMakeLists.txt b/CMakeLists.txt
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -25,6 +25,7 @@ add_definitions( -DUNIX )
 
 include( CheckCSourceCompiles )
 include( CheckLibraryExists )
+include_directories(BEFORE SYSTEM "/usr/include/openssl-1.0")
 
 set(
 	RELVER "2.2.1" )
@@ -270,7 +271,7 @@ endif( NOT PATH_INC_CRYPTO )
 
 find_library(
 	PATH_LIB_CRYPTO
-	NAMES "crypto"
+	NAMES "libcrypto.so.1.0.0"
 	PATHS ${SEARCH_LIB} )
 
 if( NOT PATH_LIB_CRYPTO )
diff --git a/source/ikec/CMakeLists.txt b/source/ikec/CMakeLists.txt
--- a/source/ikec/CMakeLists.txt
+++ b/source/ikec/CMakeLists.txt
@@ -32,7 +32,7 @@ target_link_libraries(
 	ss_idb
 	ss_ith
 	ss_log
-	crypto
+	${PATH_LIB_CRYPTO}
 	pthread
 	edit )
 
diff --git a/source/iked/CMakeLists.txt b/source/iked/CMakeLists.txt
--- a/source/iked/CMakeLists.txt
+++ b/source/iked/CMakeLists.txt
@@ -73,7 +73,7 @@ target_link_libraries(
 	ss_ip
 	ss_log
 	ss_pfk
-	crypto
+	${PATH_LIB_CRYPTO}
 	pthread )
 
 if( FUNC_LIB_CRYPT )
diff --git a/source/libike/CMakeLists.txt b/source/libike/CMakeLists.txt
--- a/source/libike/CMakeLists.txt
+++ b/source/libike/CMakeLists.txt
@@ -29,7 +29,7 @@ target_link_libraries(
 	ss_ike
 	ss_idb
 	ss_ith
-	crypto )
+	${PATH_LIB_CRYPTO} )
 
 set_target_properties(
 	ss_ike PROPERTIES
diff --git a/source/qikea/CMakeLists.txt b/source/qikea/CMakeLists.txt
--- a/source/qikea/CMakeLists.txt
+++ b/source/qikea/CMakeLists.txt
@@ -55,7 +55,7 @@ target_link_libraries(
 	ss_idb
 	ss_ith
 	ss_log
-	crypto
+	${PATH_LIB_CRYPTO}
 	pthread
 	${QT_LIBRARIES} )
 
diff --git a/source/qikec/CMakeLists.txt b/source/qikec/CMakeLists.txt
--- a/source/qikec/CMakeLists.txt
+++ b/source/qikec/CMakeLists.txt
@@ -53,7 +53,7 @@ target_link_libraries(
 	ss_idb
 	ss_ith
 	ss_log
-	crypto
+	${PATH_LIB_CRYPTO}
 	pthread
 	${QT_LIBRARIES} )
 
-- 
2.12.2