forked from pool/pgbackrest
6355c5a7e1
- update to version 2.48 * Bug Fixes: + Fix issue restoring block incremental without a block list. + [doc] Fix configuration reference example for the tls-server-address option. + [doc] Fix command reference example for the filter option. * Features: + Add --repo-storage-tag option to create object tags. + Add known hosts checking for SFTP storage driver. + Support for dual stack connections. + Add backup size completed/total to info command JSON output. * Improvements: + Multi-stanza check command. + Retry reads of pg_control until checksum is valid. + Optimize WAL segment check after successful backup. + Improve GCS multi-part performance. + Allow archive-get command to run when stanza is stopped. + Accept leading tilde in paths for SFTP public/private keys. + Reload GCS credentials before renewing authentication token. * Test Suite Improvements - refreshed patches; release.xml has been splitted into individual files OBS-URL: https://build.opensuse.org/request/show/1113999 OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/pgbackrest?expand=0&rev=61
33 lines
1.2 KiB
Diff
33 lines
1.2 KiB
Diff
Index: pgbackrest-release-2.48/src/configure
|
|
===================================================================
|
|
--- pgbackrest-release-2.48.orig/src/configure
|
|
+++ pgbackrest-release-2.48/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.48/src/postgres/client.c
|
|
===================================================================
|
|
--- pgbackrest-release-2.48.orig/src/postgres/client.c
|
|
+++ pgbackrest-release-2.48/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"
|