1From 845c18c1288b7a96592901baadb198f96dd71c46 Mon Sep 17 00:00:00 2001
2From: fidomax <adobegitler@gmail.com>
3Date: Tue, 26 Jan 2021 09:49:19 +0300
4Subject: [PATCH] Disable forced static linking of liblwgeom
5
6In case of shared libs build fails:
7ld: cannot find -lgeos_c
8ld: attempted static link of dynamic object `/usr/lib/libproj.so'
9
10Signed-off-by: Maxim Kochetkov <fido_max@inbox.ru>
11Fetch from: https://github.com/postgis/postgis/commit/98070faad220e12fcaed9a583a70a37c510b7c6b.patch
12---
13 loader/Makefile.in | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16diff --git a/loader/Makefile.in b/loader/Makefile.in
17index 9aebfe07f..9a0c90d3a 100644
18--- a/loader/Makefile.in
19+++ b/loader/Makefile.in
20@@ -44,7 +44,7 @@ ICONV_CFLAGS=@ICONV_CFLAGS@
21
22 # liblwgeom
23 LIBLWGEOM=../liblwgeom/liblwgeom.la
24-LDFLAGS += -static $(LIBLWGEOM)
25+LDFLAGS += $(LIBLWGEOM)
26
27 # GTK includes and libraries
28 GTK_CFLAGS = @GTK_CFLAGS@ @IGE_MAC_CFLAGS@
29--
302.30.0
31
32