0
0
mirror of https://github.com/openwrt/packages.git synced 2025-07-09 19:59:08 +00:00
Files
packages/libs/postgresql/patches/300-fix-includes.patch
Daniel Golle 9ec157ee98 postgresql: update to version 17.2
Update PostgreSQL to new (major) version 17.2
See https://www.postgresql.org/docs/release/17.2/ for more details.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2025-02-10 11:47:32 +00:00

17 lines
329 B
Diff

--- a/src/bin/pg_ctl/pg_ctl.c
+++ b/src/bin/pg_ctl/pg_ctl.c
@@ -12,11 +12,13 @@
#include "postgres_fe.h"
#include <fcntl.h>
+#include <pwd.h>
#include <signal.h>
#include <time.h>
#include <sys/resource.h>
#include <sys/stat.h>
#include <sys/time.h>
+#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>