forked from pool/pgbackrest
Bruno Friedmann
7ccaa117a7
- update to version 2.51 * Bug Fixes: + Skip zero-length files for block incremental delta restore. + Fix performance regression in storage list. + Fix progress logging when file size changes during backup. * Improvements: + Improved support for dual stack connections. + Make meson the primary build system. + Detect files that have not changed during non-delta incremental backup. + Prevent invalid recovery when backup_label removed. + Improve archive-push WAL segment queue handling. + Limit resume functionality to full backups. + Update resume functionality for block incremental. + Allow --version and --help for version and help. + Add detailed backtrace to autoconf/make build. * Documentation Improvements: + Update references to recovery.conf. (Reviewed by Stefan Fercot. Suggested by Stephen Frost.) OBS-URL: https://build.opensuse.org/request/show/1163486 OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/pgbackrest?expand=0&rev=67
33 lines
1.2 KiB
Diff
33 lines
1.2 KiB
Diff
Index: pgbackrest-release-2.51/src/postgres/client.c
|
|
===================================================================
|
|
--- pgbackrest-release-2.51.orig/src/postgres/client.c
|
|
+++ pgbackrest-release-2.51/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"
|
|
Index: pgbackrest-release-2.51/src/configure
|
|
===================================================================
|
|
--- pgbackrest-release-2.51.orig/src/configure
|
|
+++ pgbackrest-release-2.51/src/configure
|
|
@@ -3655,12 +3655,12 @@ else $as_nop
|
|
as_fn_error $? "library 'pq' is required" "$LINENO" 5
|
|
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
|
|
|
|
|