Advertisement
-KARMA-

Untitled

Jul 15th, 2024
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.61 KB | None | 0 0
  1. make USE_PGXS=1 PG_CONFIG=/usr/bin/pg_config top_srcdir=/home/karma/postgresql-14-14.12
  2. gcc -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -g -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -fno-omit-frame-pointer -DFRONTEND -I. -I./ -I/usr/include/postgresql/16/server -I/usr/include/postgresql/internal  -Wdate-time -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -I/usr/include/libxml2  -I/usr/include/postgresql -pthread -D_REENTRANT -D_THREAD_SAFE -Isrc -I/home/karma/postgresql-14-14.12//src  -c -o src/stream.o src/stream.c
  3. src/stream.c: In function ЃeCreateReplicationSlot_compatЃf:
  4. src/stream.c:192:9: error: too many arguments to function ЃeCreateReplicationSlotЃf
  5.   192 |  return CreateReplicationSlot(conn, slot_name, plugin, is_temporary, is_physical,
  6.       |         ^~~~~~~~~~~~~~~~~~~~~
  7. In file included from src/stream.c:12:
  8. src/streamutil.h:34:13: note: declared here
  9.    34 | extern bool CreateReplicationSlot(PGconn *conn, const char *slot_name,
  10.       |             ^~~~~~~~~~~~~~~~~~~~~
  11. src/stream.c: In function ЃeStreamLogЃf:
  12. src/stream.c:281:4: error: ЃePG_COMPRESSION_NONEЃf undeclared (first use in this function)
  13.   281 |    PG_COMPRESSION_NONE,
  14.       |    ^~~~~~~~~~~~~~~~~~~
  15. src/stream.c:281:4: note: each undeclared identifier is reported only once for each function it appears in
  16. src/stream.c:279:19: error: too many arguments to function ЃeCreateWalDirectoryMethodЃf
  17.   279 |   ctl.walmethod = CreateWalDirectoryMethod(
  18.       |                   ^~~~~~~~~~~~~~~~~~~~~~~~
  19. In file included from src/receivelog.h:17,
  20.                  from src/stream.c:11:
  21. src/walmethods.h:97:17: note: declared here
  22.    97 | WalWriteMethod *CreateWalDirectoryMethod(const char *basedir,
  23.       |                 ^~~~~~~~~~~~~~~~~~~~~~~~
  24. src/stream.c:311:20: error: ЃeWalWriteMethodЃf has no member named ЃeopsЃf
  25.   311 |  if (!ctl.walmethod->ops->finish(ctl.walmethod))
  26.       |                    ^~
  27. src/stream.c: In function Ѓeparse_tli_history_bufferЃf:
  28. src/stream.c:595:15: warning: declaration of ЃetliЃf shadows a parameter [-Wshadow=compatible-local]
  29.   595 |    TimeLineID tli;
  30.       |               ^~~
  31. src/stream.c:574:52: note: shadowed declaration is here
  32.   574 | parse_tli_history_buffer(char *history, TimeLineID tli)
  33.       |                                         ~~~~~~~~~~~^~~
  34. make: *** [<builtin>: src/stream.o] Error 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement