Re: [HACKERS] build problem

2010-12-02 Thread Peter Eisentraut
On ons, 2010-12-01 at 21:27 -0800, Jeff Davis wrote: > On Wed, 2010-12-01 at 22:16 -0500, Tom Lane wrote: > > Jeff Davis writes: > > > When I build HEAD using just "make -s install", everything works fine. > > > But when I add "-j12", it appears to cause problems. This problem > > > appeared very

Re: [HACKERS] build problem

2010-12-01 Thread Jeff Davis
On Wed, 2010-12-01 at 22:16 -0500, Tom Lane wrote: > Jeff Davis writes: > > When I build HEAD using just "make -s install", everything works fine. > > But when I add "-j12", it appears to cause problems. This problem > > appeared very recently. Output below. > > Platform? Oops, sorry: $ uname -

Re: [HACKERS] build problem

2010-12-01 Thread Tom Lane
Jeff Davis writes: > When I build HEAD using just "make -s install", everything works fine. > But when I add "-j12", it appears to cause problems. This problem > appeared very recently. Output below. Platform? regards, tom lane -- Sent via pgsql-hackers mailing list (pg

[HACKERS] build problem

2010-12-01 Thread Jeff Davis
When I build HEAD using just "make -s install", everything works fine. But when I add "-j12", it appears to cause problems. This problem appeared very recently. Output below. I can get it to work simply by running "make -s -j12 install" over and over, and eventually it succeeds. Regards,

[HACKERS] Build problem with VS2008 Express Edition

2008-03-11 Thread James Mansion
Hi, I managed to get most of 8.3 built with VS2008EE last night. Ii had to change some references to msbuild to vsbuild, which I guess is expected but one compile issue surprised me. I had to change #ifdef IPV6_V6ONLY at backend/libpq/pqcomm.c:386 to: #if defined(IPV6_V6ONLY) && (!define

Re: [HACKERS] Build-Problem with pgc.c on OSX 10.4

2007-04-16 Thread Neil Conway
On Mon, 2007-04-16 at 03:48 +0200, Florian G. Pflug wrote: > I just realized that this file isn't even in the postgresql CVS > repo. But it _is_ part of the SVN mirror at > https://projects.commandprompt.com/public/pgsql/repo. [...] > Seems to be a bug in the CVS->SVN conversion process... The roo

Re: [HACKERS] Build-Problem with pgc.c on OSX 10.4

2007-04-16 Thread Florian G. Pflug
Alvaro Herrera wrote: Florian G. Pflug wrote: Alvaro Herrera wrote: Ah, it seems the SVN repo just got its first user ;-) Congratulations. Ask Joshua to send you a Command Prompt tee shirt, maybe he is excited enough. I hope the fact that I use the SVN repo just to get the changes into git do

Re: [HACKERS] Build-Problem with pgc.c on OSX 10.4

2007-04-16 Thread Alvaro Herrera
Florian G. Pflug wrote: > Alvaro Herrera wrote: > >Ah, it seems the SVN repo just got its first user ;-) Congratulations. > >Ask Joshua to send you a Command Prompt tee shirt, maybe he is excited > >enough. > > I hope the fact that I use the SVN repo just to get the changes into > git doesn't red

Re: [HACKERS] Build-Problem with pgc.c on OSX 10.4

2007-04-16 Thread Florian G. Pflug
Alvaro Herrera wrote: Ah, it seems the SVN repo just got its first user ;-) Congratulations. Ask Joshua to send you a Command Prompt tee shirt, maybe he is excited enough. I hope the fact that I use the SVN repo just to get the changes into git doesn't reduce my chances of getting that t-shirt

Re: [HACKERS] Build-Problem with pgc.c on OSX 10.4

2007-04-16 Thread Alvaro Herrera
Florian G. Pflug wrote: > Tom Lane wrote: > >"Florian G. Pflug" <[EMAIL PROTECTED]> writes: > >>When I try to build CVS HEAD on OSX 10.4, compiling > >>src/interfaces/ecpg/preproc/preproc.c fails with: > >>... > >>If I delete pgc.c, it is rebuilt automatically, and then > >>preproc.c compiles just

Re: [HACKERS] Build-Problem with pgc.c on OSX 10.4

2007-04-15 Thread Florian G. Pflug
Tom Lane wrote: "Florian G. Pflug" <[EMAIL PROTECTED]> writes: When I try to build CVS HEAD on OSX 10.4, compiling src/interfaces/ecpg/preproc/preproc.c fails with: ... If I delete pgc.c, it is rebuilt automatically, and then preproc.c compiles just fine. ... I'm using gcc 4.0.1, flex 2.5.4 and

Re: [HACKERS] Build-Problem with pgc.c on OSX 10.4

2007-04-15 Thread Tom Lane
"Florian G. Pflug" <[EMAIL PROTECTED]> writes: > When I try to build CVS HEAD on OSX 10.4, compiling > src/interfaces/ecpg/preproc/preproc.c fails with: > ... > If I delete pgc.c, it is rebuilt automatically, and then > preproc.c compiles just fine. > ... > I'm using gcc 4.0.1, flex 2.5.4 and bison

[HACKERS] Build-Problem with pgc.c on OSX 10.4

2007-04-15 Thread Florian G. Pflug
Hi When I try to build CVS HEAD on OSX 10.4, compiling src/interfaces/ecpg/preproc/preproc.c fails with: In file included from preproc.y:6951: pgc.l:3:20: error: config.h: No such file or directory In file included from pgc.l:28, from preproc.y:6951: preproc.h:996: error: conflic

Re: [HACKERS] Build problem and patch with Sun cc

2001-03-24 Thread Tom Lane
Steve Nicolai <[EMAIL PROTECTED]> writes: > diff -u -r1.5 pg_backup_null.c > --- src/bin/pg_dump/pg_backup_null.c2001/03/22 04:00:13 1.5 > +++ src/bin/pg_dump/pg_backup_null.c2001/03/24 22:00:07 > @@ -98,7 +98,7 @@ > static void > _PrintTocData(ArchiveHandle *AH, TocEntry *te, Restor

[HACKERS] Build problem and patch with Sun cc

2001-03-24 Thread Steve Nicolai
I did a cvs pull of the head on 3/24/01 and used Sun's cc compiler 5.0 (with all patches as of 2/1/01) to build. I ran into a problem building pg_backup_null.c rev 1.5. The following patch lets me build: Index: src/bin/pg_dump/pg_backup_null.c ===