From: | "Hartmut "Hardy" Raschick" <hartmut(dot)raschick(at)keymile(dot)com> |
---|---|
To: | pgsql-bugs(at)postgresql(dot)org |
Subject: | BUG #6073: VPATH build fails in src/backend/replication for src tarball, repl_scanner.c not found |
Date: | 2011-06-22 11:21:35 |
Message-ID: | 201106221121.p5MBLZrV063065@wwwmaster.postgresql.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
The following bug has been logged online:
Bug reference: 6073
Logged by: Hartmut "Hardy" Raschick
Email address: hartmut(dot)raschick(at)keymile(dot)com
PostgreSQL version: 9.1beta2
Operating system: Solaris
Description: VPATH build fails in src/backend/replication for src
tarball, repl_scanner.c not found
Details:
WHAT:
postgresql-9.1beta2.tar.bz
WHERE:
SunOS 5.9 Generic_122300-46 sun4u sparc SUNW,Sun-Fire-V440
GNU Make 3.80
cc: Sun C 5.9 SunOS_sparc Patch 124867-01 2007/07/12
HOW:
cd /tmp
tar xvjf postgresql-9.1beta2.tar.bz
cd postgresql-9.1beta2
mkdir build
cd build
../configure ...
make
/opt/studio12/SUNWspro/bin/cc -Xa -v -O -I../../../src/include
-I/tmp/postgresql-9.1beta2/build/../src/include -c -o repl_gram.o
/tmp/postgresql-9.1beta2/build/../src/backend/replication/repl_gram.c
"repl_gram.y", line 106: warning: enum type mismatch: op "="
"repl_gram.y", line 116: warning: enum type mismatch: op "="
"repl_gram.y", line 161: warning: enum type mismatch: op "="
"repl_gram.y", line 169: cannot find include file: "repl_scanner.c"
cc: acomp failed for
/tmp/postgresql-9.1beta2/build/../src/backend/replication/repl_gram.c
gmake: *** [repl_gram.o] Error 2
FIX:
adding
CFLAGS += -I$(top_srcdir)/src/backend/replication
say, between lines 13 and 15 in
src/backend/replication/Makefile
fixes this for me; this is surely not the "proper" fix though (seeing flex
build and all...).
NOTE:
"CFLAGS += -I." does not help, as this again is eval'd as the build dir (we
want src)
NOTE2:
Sun's (make that Oracle's) CC apparently does not, as gcc does, implicitly
add the current src dir (as seen from -c e.g.) to the list of include
dirs...
From | Date | Subject | |
---|---|---|---|
Next Message | Emanuel Calvo | 2011-06-22 11:49:36 | Re: Where is pg_create_restore_point funciton in 9.1a2 ? |
Previous Message | Hartmut Hardy Raschick | 2011-06-22 10:54:13 | BUG #6072: VPATH build fails in src/backend/port for src tarball, errcodes.h not found |