From: Andres Freund Date: Thu, 25 Sep 2014 13:22:26 +0000 (+0200) Subject: Fix VPATH builds of the replication parser from git for some !gcc compilers. X-Git-Tag: REL9_4_BETA3~24 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2024ead21b8ac64f0d6cd13d0c1c2cb8d596238e;p=postgresql Fix VPATH builds of the replication parser from git for some !gcc compilers. Some compilers don't automatically search the current directory for included files. 9cc2c182fc2 fixed that for builds from tarballs by adding an include to the source directory. But that doesn't work when the scanner is generated in the VPATH directory. Use the same search path 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 for replication commands. --- diff --git a/src/backend/replication/Makefile b/src/backend/replication/Makefile index 6f17b08a6a..b73370eaa9 100644 --- a/src/backend/replication/Makefile +++ b/src/backend/replication/Makefile @@ -12,7 +12,7 @@ subdir = src/backend/replication top_builddir = ../../.. include $(top_builddir)/src/Makefile.global -override CPPFLAGS := -I$(srcdir) $(CPPFLAGS) +override CPPFLAGS := -I. -I$(srcdir) $(CPPFLAGS) OBJS = walsender.o walreceiverfuncs.o walreceiver.o basebackup.o \ repl_gram.o slot.o slotfuncs.o syncrep.o