-head build error report

Started by Joshua D. Drakeover 17 years ago4 messages
#1Joshua D. Drake
jd@commandprompt.com

Linux jd-laptop 2.6.24-19-generic #1 SMP Wed Jun 4 16:35:01 UTC 2008
i686 GNU/Linux

Using built-in specs.
Target: i486-linux-gnu
Configured with: ../src/configure -v --enable-languages=c,c
++,fortran,objc,obj-c++,treelang --prefix=/usr --enable-shared
--with-system-zlib --libexecdir=/usr/lib --without-included-gettext
--enable-threads=posix --enable-nls
--with-gxx-include-dir=/usr/include/c++/4.2 --program-suffix=-4.2
--enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc
--enable-mpfr --enable-targets=all --enable-checking=release
--build=i486-linux-gnu --host=i486-linux-gnu --target=i486-linux-gnu
Thread model: posix
gcc version 4.2.3 (Ubuntu 4.2.3-2ubuntu7)

de -D_GNU_SOURCE -c -o gistget.o gistget.c
In file included from gistget.c:21:
../../../../src/include/pgstat.h:15:36: error: portability/instr_time.h:
No such file or directory
In file included from gistget.c:21:
../../../../src/include/pgstat.h:326: error: expected
specifier-qualifier-list before ‘instr_time’
../../../../src/include/pgstat.h:566: error: expected
specifier-qualifier-list before ‘instr_time’
make[4]: *** [gistget.o] Error 1
make[4]: Leaving directory
`/home/jd/repos/pgsql/src/backend/access/gist'
make[3]: *** [gist-recursive] Error 2
make[3]: Leaving directory `/home/jd/repos/pgsql/src/backend/access'
make[2]: *** [access-recursive] Error 2
make[2]: Leaving directory `/home/jd/repos/pgsql/src/backend'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/jd/repos/pgsql/src'
make: *** [all] Error 2

#2Andrew Dunstan
andrew@dunslane.net
In reply to: Joshua D. Drake (#1)
Re: -head build error report

Joshua D. Drake wrote:

Linux jd-laptop 2.6.24-19-generic #1 SMP Wed Jun 4 16:35:01 UTC 2008
i686 GNU/Linux

Using built-in specs.
Target: i486-linux-gnu
Configured with: ../src/configure -v --enable-languages=c,c
++,fortran,objc,obj-c++,treelang --prefix=/usr --enable-shared
--with-system-zlib --libexecdir=/usr/lib --without-included-gettext
--enable-threads=posix --enable-nls
--with-gxx-include-dir=/usr/include/c++/4.2 --program-suffix=-4.2
--enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc
--enable-mpfr --enable-targets=all --enable-checking=release
--build=i486-linux-gnu --host=i486-linux-gnu --target=i486-linux-gnu
Thread model: posix
gcc version 4.2.3 (Ubuntu 4.2.3-2ubuntu7)

de -D_GNU_SOURCE -c -o gistget.o gistget.c
In file included from gistget.c:21:
../../../../src/include/pgstat.h:15:36: error: portability/instr_time.h:
No such file or directory
In file included from gistget.c:21:
../../../../src/include/pgstat.h:326: error: expected
specifier-qualifier-list before ‘instr_time’
../../../../src/include/pgstat.h:566: error: expected
specifier-qualifier-list before ‘instr_time’
make[4]: *** [gistget.o] Error 1
make[4]: Leaving directory
`/home/jd/repos/pgsql/src/backend/access/gist'
make[3]: *** [gist-recursive] Error 2
make[3]: Leaving directory `/home/jd/repos/pgsql/src/backend/access'
make[2]: *** [access-recursive] Error 2
make[2]: Leaving directory `/home/jd/repos/pgsql/src/backend'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/jd/repos/pgsql/src'
make: *** [all] Error 2

Looks like you do not have the right CVS flags set. You need to use -d
when you do a cvs update or you won't pick up new directories.

You should really have this set in your .cvsrc file.

cheers

andrew

#3Joshua D. Drake
jd@commandprompt.com
In reply to: Andrew Dunstan (#2)
Re: -head build error report

On Sat, 2008-06-21 at 07:53 -0400, Andrew Dunstan wrote:

Looks like you do not have the right CVS flags set. You need to use -d
when you do a cvs update or you won't pick up new directories.

You should really have this set in your .cvsrc file.

Sorry, this is the only project I use dead software for :P (I didn't
even know there was such a thing as a .cvsrc).

Thanks for the tip :)

Joshua D. Drake

Show quoted text

cheers

andrew

#4Stefan Kaltenbrunner
stefan@kaltenbrunner.cc
In reply to: Joshua D. Drake (#3)
Re: -head build error report

Joshua D. Drake wrote:

On Sat, 2008-06-21 at 07:53 -0400, Andrew Dunstan wrote:

Looks like you do not have the right CVS flags set. You need to use -d
when you do a cvs update or you won't pick up new directories.

You should really have this set in your .cvsrc file.

Sorry, this is the only project I use dead software for :P (I didn't
even know there was such a thing as a .cvsrc).

Thanks for the tip :)

http://wiki.postgresql.org/wiki/Working_with_CVS has even more :P

Stefan