Thread

  1. [RC2]:Compilation failure solaris 2.7 stringinfo.c

    Armand Delcros <adelcros@arsystemes.fr> — 2000-05-04T11:00:33Z

    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
    
    
    
  2. Re: [RC2]:Compilation failure solaris 2.7 stringinfo.c

    Tom Lane <tgl@sss.pgh.pa.us> — 2000-05-04T14:58:29Z

    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