Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit56a312a

Browse files
committed
Fix VPATH builds of the replication parser from git for some !gcc compilers.
Some compilers don't automatically search the current directory forincluded files.9cc2c18 fixed that for builds from tarballs byadding an include to the source directory. But that doesn't work whenthe scanner is generated in the VPATH directory. Use the same searchpath as the other parsers in the tree.One compiler that definitely was affected is solaris' sun cc.Backpatch to 9.1 which introduced using an actual parser forreplication commands.
1 parentecacbdb commit56a312a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎src/backend/replication/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ subdir = src/backend/replication
1212
top_builddir = ../../..
1313
include$(top_builddir)/src/Makefile.global
1414

15-
overrideCPPFLAGS := -I$(srcdir)$(CPPFLAGS)
15+
overrideCPPFLAGS := -I. -I$(srcdir)$(CPPFLAGS)
1616

1717
OBJS = walsender.o walreceiverfuncs.o walreceiver.o basebackup.o\
1818
repl_gram.o slot.o slotfuncs.o syncrep.o

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp