Solaris 8 / still waiting

Started by Zenon Braga F.over 25 years ago2 messagesbugs
Jump to latest
#1Zenon Braga F.
zfbf@hotmail.com

Sorry If I'm annoying you, but I'm trying to install PostgreSQL onto
Solaris 8 and I'm not able to perform the second install process, that is,
could you take a look at these two files that I'm seending to you?

sincerely,

Zenon Farias Braga F.

P.S.: ./configure --prefix=/opt/pgsql > stage1.out 2>&1
gmake > stage2.out 2>&1
_____________________________________________________________________________________
Get more from the Web. FREE MSN Explorer download : http://explorer.msn.com

Attachments:

stage1.outapplication/octet-stream; name=stage1.outDownload
stage2.outapplication/octet-stream; name=stage2.outDownload
#2Tom Lane
tgl@sss.pgh.pa.us
In reply to: Zenon Braga F. (#1)
Re: Solaris 8 / still waiting

It seems the problem is

checking for ANSI C header files... no

which causes <stdarg.h> not to be included. Dunno what about Solaris
is nonstandard enough to fool autoconf's test, but I see that the
AC_HEADER_STDC macro tests quite a bit more than just whether the header
files exist.

Try modifying src/include/c.h so that <stddef.h> and <stdarg.h> are
included unconditionally. That's how it's done in current sources...

regards, tom lane