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

Commit455dbc0

Browse files
committed
Use "-I." in directories holding Bison parsers, for Oracle compilers.
With the Oracle Developer Studio 12.6 compiler, #line directives alterthe current source file location for purposes of #include "..."directives. Hence, a VPATH build failed with 'cannot find include file:"specscanner.c"'. With two exceptions, parser-containing directoriesalready add "-I. -I$(srcdir)"; eliminate the exceptions. Back-patch to9.6 (all supported versions).
1 parentc3556f6 commit455dbc0

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

‎src/backend/utils/adt/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ subdir = src/backend/utils/adt
88
top_builddir = ../../../..
99
include$(top_builddir)/src/Makefile.global
1010

11+
overrideCPPFLAGS := -I. -I$(srcdir)$(CPPFLAGS)
12+
1113
# keep this list arranged alphabetically or it gets to be a mess
1214
OBJS =\
1315
acl.o\

‎src/test/isolation/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ subdir = src/test/isolation
99
top_builddir = ../../..
1010
include$(top_builddir)/src/Makefile.global
1111

12-
overrideCPPFLAGS := -I$(srcdir) -I$(libpq_srcdir) -I$(srcdir)/../regress$(CPPFLAGS)
12+
overrideCPPFLAGS := -I. -I$(srcdir) -I$(libpq_srcdir)\
13+
-I$(srcdir)/../regress$(CPPFLAGS)
1314

1415
OBJS =\
1516
$(WIN32RES)\

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp