# HG changeset patch # User Alain Mazy # Date 1764416416 -3600 # Node ID 565c1cf76b2868942a4ede98c5d913446741f683 # Parent fbe0c295f8ce7ca49c9c8b3f841d6080ecdcc74b back to libpq 13.23 diff -r fbe0c295f8ce -r 565c1cf76b28 PostgreSQL/NEWS --- a/PostgreSQL/NEWS Sat Nov 29 12:06:59 2025 +0100 +++ b/PostgreSQL/NEWS Sat Nov 29 12:40:16 2025 +0100 @@ -31,8 +31,6 @@ * Added a new primary key column in the InvalidChildCounts and GlobalIntegersChanges tables. This new column is required for pg_repack to be able to reclaim space on these tables. -* Upgraded dependencies for static builds (notably on Windows and LSB): - - libpq 18.1 (replacing libpq 13.1 - except for macOS universal binaries that still uses 13.1) Release 9.0 (2025-08-13) diff -r fbe0c295f8ce -r 565c1cf76b28 Resources/CMake/PostgreSQLConfiguration.cmake --- a/Resources/CMake/PostgreSQLConfiguration.cmake Sat Nov 29 12:06:59 2025 +0100 +++ b/Resources/CMake/PostgreSQLConfiguration.cmake Sat Nov 29 12:40:16 2025 +0100 @@ -48,15 +48,13 @@ if (STATIC_BUILD OR NOT USE_SYSTEM_LIBPQ) add_definitions(-DORTHANC_POSTGRESQL_STATIC=1) - if (CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang") - SET(LIBPQ_MAJOR 13) - SET(LIBPQ_MINOR 23) - SET(LIBPQ_MD5SUM 86f7b1ace0dc43e993f29a6739a264d8) - else() - SET(LIBPQ_MAJOR 18) - SET(LIBPQ_MINOR 1) - SET(LIBPQ_MD5SUM 523b5e7f7f64d331004fd93d37109aa0) - endif() + SET(LIBPQ_MAJOR 13) + SET(LIBPQ_MINOR 23) + SET(LIBPQ_MD5SUM 86f7b1ace0dc43e993f29a6739a264d8) + # disabled 18.1: it only builds on ubuntu but fails with VS2008, VS2015 and LSB + # SET(LIBPQ_MAJOR 18) + # SET(LIBPQ_MINOR 1) + # SET(LIBPQ_MD5SUM 523b5e7f7f64d331004fd93d37109aa0) SET(LIBPQ_VERSION ${LIBPQ_MAJOR}.${LIBPQ_MINOR})