summaryrefslogtreecommitdiff
path: root/dev-db/sqliteman/files/sqliteman-1.2.2-lpthread.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-db/sqliteman/files/sqliteman-1.2.2-lpthread.patch
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-db/sqliteman/files/sqliteman-1.2.2-lpthread.patch')
-rw-r--r--dev-db/sqliteman/files/sqliteman-1.2.2-lpthread.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/dev-db/sqliteman/files/sqliteman-1.2.2-lpthread.patch b/dev-db/sqliteman/files/sqliteman-1.2.2-lpthread.patch
deleted file mode 100644
index a9bf4f4f9528..000000000000
--- a/dev-db/sqliteman/files/sqliteman-1.2.2-lpthread.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Resolves underlinking issue causing build failure on uclibc.
-
-Author: René Rhéaume <rene.rheaume@gmail.com>
-Gentoo-bug: 587076
-
---- a/sqliteman/CMakeLists.txt
-+++ b/sqliteman/CMakeLists.txt
-@@ -183,7 +183,10 @@ IF (WIN32)
- # don't use console subsystem
- IF (MINGW)
- TARGET_LINK_LIBRARIES(${EXE_NAME} "-mwindows")
-- ENDIF (MINGW)
-+ ENDIF (MINGW)
-+ELSE (WIN32)
-+ FIND_PACKAGE(Threads)
-+ TARGET_LINK_LIBRARIES(${EXE_NAME} ${CMAKE_THREAD_LIBS_INIT})
- ENDIF (WIN32)
-
-