summaryrefslogtreecommitdiff
path: root/dev-db/pgagent/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-04-06 22:33:41 +0100
committerV3n3RiX <venerix@koprulu.sector>2022-04-06 22:33:41 +0100
commite68d405c5d712af4387159df07e226217bdda049 (patch)
tree009ab0f3d427f0813e62930d71802cb054c07e30 /dev-db/pgagent/files
parent401101f9c8077911929d3f2b60a37098460a5d89 (diff)
gentoo resync : 06.04.2022
Diffstat (limited to 'dev-db/pgagent/files')
-rw-r--r--dev-db/pgagent/files/pgagent-4.0.0-pthreads-linking.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/dev-db/pgagent/files/pgagent-4.0.0-pthreads-linking.patch b/dev-db/pgagent/files/pgagent-4.0.0-pthreads-linking.patch
deleted file mode 100644
index 95f8e998f58f..000000000000
--- a/dev-db/pgagent/files/pgagent-4.0.0-pthreads-linking.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 5b79460bdda286ca988b39e93e446176e8a781d1 Mon Sep 17 00:00:00 2001
-From: Neel Patel <neel.patel@enterprisedb.com>
-Date: Fri, 20 Jul 2018 13:35:35 +0100
-Subject: [PATCH] Link with pthreads on non-Windows and non-macOS platforms.
-
-Patch based on feedback and initial work by Christoph Berg.
----
- CMakeLists.txt | 6 ++++++
- 1 file changed, 6 insertions(+)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 1be24da..6f1eaa0 100755
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -134,9 +134,15 @@ IF(WIN32)
- ENDIF(WIN32)
-
- ADD_EXECUTABLE(pgagent ${_srcs})
-+IF(UNIX AND NOT APPLE)
-+TARGET_LINK_LIBRARIES(
-+ pgagent ${PG_LIBRARIES} ${Boost_LIBRARIES} -pthread
-+)
-+ELSE()
- TARGET_LINK_LIBRARIES(
- pgagent ${PG_LIBRARIES} ${Boost_LIBRARIES}
- )
-+ENDIF()
-
- # Installation
- IF (WIN32)
---
-2.24.1
-