[RC2]:Compilation failure solaris 2.7 stringinfo.c

Started by Armand Delcrosalmost 26 years ago2 messagesbugs
Jump to latest
#1Armand Delcros
adelcros@arsystemes.fr

Hi,

[uname -a]

SunOS master 5.7 Generic_106541-06 sun4u sparc SUNW,Ultra-Enterprise
In, postgresql-7.0RC2/src/backend/stringinfo.c
I need to declare

#include <stdio.h>
#include <stdarg.h>

the same for this file:
postgresql-7.0RC2/src/backend/nodes/list.c
need to declare
#include <stdio.h>
#include <stdarg.h>

Best regards

Armand Delcros

#2Tom Lane
tgl@sss.pgh.pa.us
In reply to: Armand Delcros (#1)
Re: [RC2]:Compilation failure solaris 2.7 stringinfo.c

Armand Delcros <adelcros@arsystemes.fr> writes:

In, postgresql-7.0RC2/src/backend/stringinfo.c
I need to declare

#include <stdio.h>
#include <stdarg.h>

the same for this file:
postgresql-7.0RC2/src/backend/nodes/list.c
need to declare
#include <stdio.h>
#include <stdarg.h>

Say what? Both of those files include postgres.h, which includes c.h,
which should take care of that for you, just like it does for every
other C file in the system. I don't know what your problem is but
I believe you've misidentified it ...

regards, tom lane