summaryrefslogtreecommitdiff
path: root/debian/patches/0001-missing_pthread.patch
blob: 8afe6ae6645b8f7fc0105b28d94d717ec2a5c5c3 (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
Index: trunk/CMakeLists.txt
===================================================================
--- trunk.orig/CMakeLists.txt
+++ trunk/CMakeLists.txt
@@ -212,7 +212,8 @@ if(URIPARSER_BUILD_TOOLS)
         tool/uriparse.c
     )
 
-    target_link_libraries(uriparse PUBLIC uriparser)
+    find_package(Threads REQUIRED)
+    target_link_libraries(uriparse PUBLIC uriparser pthread)
 
     if(HAIKU)
         # Function inet_ntop needs -lsocket or -lnetwork (see pull request #45)
@@ -245,6 +246,7 @@ if(URIPARSER_BUILD_TESTS)
     enable_testing()
 
     find_package(GTest 1.8.1 REQUIRED)
+    find_package(Threads REQUIRED)
 
     add_executable(testrunner
         test/FourSuite.cpp
@@ -274,7 +276,7 @@ if(URIPARSER_BUILD_TESTS)
     )
 
     target_link_libraries(testrunner PUBLIC
-        ${GTEST_BOTH_LIBRARIES}
+        ${GTEST_BOTH_LIBRARIES} pthread
     )
 
     add_test(