Bruno Friedmann
9f861381c1
- update to version 2.50 * Bug Fixes: + Fix short read in block incremental restore. + Fix overflow suppressing backup progress in info output. * Improvements: + Preserve partial files during block incremental delta restore. + Add support for alternate compile-time page sizes. + Skip files truncated during backup when bundling. + Improve SFTP storage error messages. OBS-URL: https://build.opensuse.org/request/show/1141129 OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/pgbackrest?expand=0&rev=65
33 lines
1.2 KiB
Diff
33 lines
1.2 KiB
Diff
Index: pgbackrest-release-2.50/src/configure
|
|
===================================================================
|
|
--- pgbackrest-release-2.50.orig/src/configure
|
|
+++ pgbackrest-release-2.50/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.50/src/postgres/client.c
|
|
===================================================================
|
|
--- pgbackrest-release-2.50.orig/src/postgres/client.c
|
|
+++ pgbackrest-release-2.50/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"
|