postgresql: update to version 12.4

Fixes CVE-2020-14349 and CVE-2020-14350.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
This commit is contained in:
Daniel Golle 2020-08-30 18:52:47 +01:00
parent 25b4544297
commit 98b09ec89e
No known key found for this signature in database
GPG key ID: DD8D36F0A710502F
3 changed files with 8 additions and 8 deletions

View file

@ -5,7 +5,7 @@
include $(TOPDIR)/rules.mk include $(TOPDIR)/rules.mk
PKG_NAME:=postgresql PKG_NAME:=postgresql
PKG_VERSION:=12.3 PKG_VERSION:=12.4
PKG_RELEASE:=1 PKG_RELEASE:=1
PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org> PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
PKG_LICENSE:=PostgreSQL PKG_LICENSE:=PostgreSQL
@ -17,7 +17,7 @@ PKG_SOURCE_URL:=\
http://ftp.postgresql.org/pub/source/v$(PKG_VERSION) \ http://ftp.postgresql.org/pub/source/v$(PKG_VERSION) \
ftp://ftp.postgresql.org/pub/source/v$(PKG_VERSION) ftp://ftp.postgresql.org/pub/source/v$(PKG_VERSION)
PKG_HASH:=94ed64a6179048190695c86ec707cc25d016056ce10fc9d229267d9a8f1dcf41 PKG_HASH:=bee93fbe2c32f59419cb162bcc0145c58da9a8644ee154a30b9a5ce47de606cc
PKG_USE_MIPS16:=0 PKG_USE_MIPS16:=0
PKG_FIXUP:=autoreconf PKG_FIXUP:=autoreconf

View file

@ -1,6 +1,6 @@
--- a/configure.in --- a/configure.in
+++ b/configure.in +++ b/configure.in
@@ -2285,36 +2285,6 @@ if test "$with_python" = yes; then @@ -2317,36 +2317,6 @@ if test "$with_python" = yes; then
CPPFLAGS=$ac_save_CPPFLAGS CPPFLAGS=$ac_save_CPPFLAGS
fi fi

View file

@ -8,7 +8,7 @@
static char *argv0 = NULL; static char *argv0 = NULL;
static bool allow_core_files = false; static bool allow_core_files = false;
static time_t start_time; static time_t start_time;
@@ -2047,6 +2048,9 @@ do_help(void) @@ -2082,6 +2083,9 @@ do_help(void)
#endif #endif
printf(_(" -s, --silent only print errors, no informational messages\n")); printf(_(" -s, --silent only print errors, no informational messages\n"));
printf(_(" -t, --timeout=SECS seconds to wait when using -w option\n")); printf(_(" -t, --timeout=SECS seconds to wait when using -w option\n"));
@ -18,7 +18,7 @@
printf(_(" -V, --version output version information, then exit\n")); printf(_(" -V, --version output version information, then exit\n"));
printf(_(" -w, --wait wait until operation completes (default)\n")); printf(_(" -w, --wait wait until operation completes (default)\n"));
printf(_(" -W, --no-wait do not wait until operation completes\n")); printf(_(" -W, --no-wait do not wait until operation completes\n"));
@@ -2259,6 +2263,7 @@ main(int argc, char **argv) @@ -2294,6 +2298,7 @@ main(int argc, char **argv)
{"options", required_argument, NULL, 'o'}, {"options", required_argument, NULL, 'o'},
{"silent", no_argument, NULL, 's'}, {"silent", no_argument, NULL, 's'},
{"timeout", required_argument, NULL, 't'}, {"timeout", required_argument, NULL, 't'},
@ -26,7 +26,7 @@
{"core-files", no_argument, NULL, 'c'}, {"core-files", no_argument, NULL, 'c'},
{"wait", no_argument, NULL, 'w'}, {"wait", no_argument, NULL, 'w'},
{"no-wait", no_argument, NULL, 'W'}, {"no-wait", no_argument, NULL, 'W'},
@@ -2299,20 +2304,6 @@ main(int argc, char **argv) @@ -2334,20 +2339,6 @@ main(int argc, char **argv)
} }
} }
@ -47,7 +47,7 @@
env_wait = getenv("PGCTLTIMEOUT"); env_wait = getenv("PGCTLTIMEOUT");
if (env_wait != NULL) if (env_wait != NULL)
@@ -2399,11 +2390,15 @@ main(int argc, char **argv) @@ -2434,11 +2425,15 @@ main(int argc, char **argv)
wait_seconds_arg = true; wait_seconds_arg = true;
break; break;
case 'U': case 'U':
@ -63,7 +63,7 @@
break; break;
case 'w': case 'w':
do_wait = true; do_wait = true;
@@ -2485,6 +2480,41 @@ main(int argc, char **argv) @@ -2520,6 +2515,41 @@ main(int argc, char **argv)
exit(1); exit(1);
} }