3744f43aeb
Two security issues have been fixed in this release which affect users of specific PostgreSQL features: CVE-2015-5289: json or jsonb input values constructed from arbitrary user input can crash the PostgreSQL server and cause a denial of service. CVE-2015-5288: The crypt() function included with the optional pgCrypto extension could be exploited to read a few additional bytes of memory. No working exploit for this issue has been developed.
16 lines
422 B
Text
16 lines
422 B
Text
$NetBSD: patch-src_Makefile.global.in,v 1.2 2015/10/10 10:22:20 adam Exp $
|
|
|
|
--- src/Makefile.global.in.orig 2015-10-05 19:12:06.000000000 +0000
|
|
+++ src/Makefile.global.in
|
|
@@ -570,6 +570,11 @@ ifeq ($(PORTNAME),win32)
|
|
LIBS += -lws2_32
|
|
endif
|
|
|
|
+# missing for link on cygwin ?
|
|
+ifeq ($(PORTNAME),cygwin)
|
|
+LIBS += $(LDAP_LIBS_BE)
|
|
+endif
|
|
+
|
|
# Not really standard libc functions, used by the backend.
|
|
TAS = @TAS@
|
|
|