Bruno Friedmann
38bc1460ad
- update to version 2.47 * Bug Fixes: + Preserve block incremental info in manifest during delta backup + Fix block incremental file names in verify command + Fix spurious automatic delta backup on backup from standby + Skip recovery.signal for PostgreSQL >= 12 when recovery type=none + Fix unique label generation for diff/incr backup + Fix time-based archive expiration when no backups are expired * Improvements: + Improve performance of SFTP storage driver + Add timezone offset to info command date/time output + Centralize error handling for unsupported features * Documentation Improvements: + Clarify preference to install from packages in the user guide OBS-URL: https://build.opensuse.org/request/show/1102632 OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/pgbackrest?expand=0&rev=59
33 lines
1.2 KiB
Diff
33 lines
1.2 KiB
Diff
Index: pgbackrest-release-2.47/src/configure
|
|
===================================================================
|
|
--- pgbackrest-release-2.47.orig/src/configure
|
|
+++ pgbackrest-release-2.47/src/configure
|
|
@@ -3603,12 +3603,12 @@ then :
|
|
printf "%s\n" "#define STDC_HEADERS 1" >>confdefs.h
|
|
|
|
fi
|
|
-ac_fn_c_check_header_compile "$LINENO" "libpq-fe.h" "ac_cv_header_libpq_fe_h" "$ac_includes_default"
|
|
+ac_fn_c_check_header_compile "$LINENO" "pgsql/libpq-fe.h" "ac_cv_header_libpq_fe_h" "$ac_includes_default"
|
|
if test "x$ac_cv_header_libpq_fe_h" = xyes
|
|
then :
|
|
|
|
else $as_nop
|
|
- as_fn_error $? "header file <libpq-fe.h> is required" "$LINENO" 5
|
|
+ as_fn_error $? "header file <pgsql/libpq-fe.h> is required" "$LINENO" 5
|
|
fi
|
|
|
|
|
|
Index: pgbackrest-release-2.47/src/postgres/client.c
|
|
===================================================================
|
|
--- pgbackrest-release-2.47.orig/src/postgres/client.c
|
|
+++ pgbackrest-release-2.47/src/postgres/client.c
|
|
@@ -3,7 +3,7 @@ Postgres Client
|
|
***********************************************************************************************************************************/
|
|
#include "build.auto.h"
|
|
|
|
-#include <libpq-fe.h>
|
|
+#include <pgsql/libpq-fe.h>
|
|
|
|
#include "common/debug.h"
|
|
#include "common/log.h"
|