# HG changeset patch # User Sebastien Jodogne # Date 1515146259 -3600 # Node ID 6c94a727758c97289a82e1489bd33f2d07a32a94 # Parent 0a83e88c315c37ee70cfa0de50d90334ac9dee0f Fix issue 68 (PostgreSQL plugin needs extra flags to compile) diff -r 0a83e88c315c -r 6c94a727758c NEWS --- a/NEWS Fri Jan 05 09:52:50 2018 +0100 +++ b/NEWS Fri Jan 05 10:57:39 2018 +0100 @@ -5,6 +5,7 @@ * Performance warning if runtime debug assertions are turned on * Fix issue 62 (use correct type for lo_read() value) * Fix issue 63 (allow to connect without specifing username and/or port) +* Fix issue 68 (PostgreSQL plugin needs extra flags to compile) * Support of Linux Standard Base, OpenBSD and FreeBSD diff -r 0a83e88c315c -r 6c94a727758c Resources/CMake/PostgreSQLConfiguration.cmake --- a/Resources/CMake/PostgreSQLConfiguration.cmake Fri Jan 05 09:52:50 2018 +0100 +++ b/Resources/CMake/PostgreSQLConfiguration.cmake Fri Jan 05 10:57:39 2018 +0100 @@ -168,6 +168,7 @@ endif() endif() + check_function_exists("isinf" HAVE_ISINF) check_function_exists("getaddrinfo" HAVE_GETADDRINFO) check_function_exists("gettimeofday" HAVE_GETTIMEOFDAY) check_function_exists("snprintf" HAVE_DECL_SNPRINTF)