aboutsummarylogtreecommitdiffstats
path: root/0014-Fix-linking-against-shared-static-PostgreSQL.patch
diff options
context:
space:
mode:
authorMartchus2017-06-08 21:34:11 +0200
committerMartchus2017-06-08 21:34:11 +0200
commit846161610d6712abc5d514fd3bf6ee1cc86223cf (patch)
treeffe54aee49a30a2cb0ad3ba6f8941703ab29b07c /0014-Fix-linking-against-shared-static-PostgreSQL.patch
parent65a7f9d368e548df5e089e340bd4f404cdd2430b (diff)
downloadaur-846161610d6712abc5d514fd3bf6ee1cc86223cf.tar.gz
Update to 5.9.0
Diffstat (limited to '0014-Fix-linking-against-shared-static-PostgreSQL.patch')
-rw-r--r--0014-Fix-linking-against-shared-static-PostgreSQL.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/0014-Fix-linking-against-shared-static-PostgreSQL.patch b/0014-Fix-linking-against-shared-static-PostgreSQL.patch
deleted file mode 100644
index 88dba2748e77..000000000000
--- a/0014-Fix-linking-against-shared-static-PostgreSQL.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 953ca26efa1cb2e86a958c52ce737ada0078e1a3 Mon Sep 17 00:00:00 2001
-From: Martchus <martchus@gmx.net>
-Date: Sun, 18 Sep 2016 18:58:25 +0200
-Subject: [PATCH 14/30] Fix linking against shared/static PostgreSQL
-
----
- src/sql/configure.json | 5 +++--
- 1 file changed, 3 insertions(+), 2 deletions(-)
-
-diff --git a/src/sql/configure.json b/src/sql/configure.json
-index fce948026f..f560c191fd 100644
---- a/src/sql/configure.json
-+++ b/src/sql/configure.json
-@@ -72,9 +72,10 @@
- "label": "PostgreSQL",
- "test": "unix/psql",
- "sources": [
-- { "type": "pkgConfig", "args": "libpq" },
- { "type": "psqlConfig" },
-- { "type": "psqlEnv", "libs": "-llibpq -lws2_32 -ladvapi32", "condition": "config.win32" },
-+ { "type": "psqlEnv", "libs": "-lpq -lintl -lssl -lcrypto -lshell32 -lws2_32 -lsecur32", "condition": "config.win32 && !features.shared" },
-+ { "type": "psqlEnv", "libs": "-Wl,-Bdynamic -lpq -Wl,-Bstatic", "condition": "config.win32 && !features.shared" },
-+ { "type": "psqlEnv", "libs": "-lpq", "condition": "config.win32 && features.shared" },
- { "type": "psqlEnv", "libs": "-lpq", "condition": "!config.win32" }
- ]
- },
---
-2.12.1
-