Thread

  1. Installation failure for Solaris 8 Intel

    PostgreSQL Bugs List <pgsql-bugs@postgresql.org> — 2001-01-05T02:19:57Z

    David Trusty (dtrusty3@home.com) reports a bug with a severity of 3
    The lower the number the more severe it is.
    
    Short Description
    Installation failure for Solaris 8 Intel
    
    Long Description
    Version 7.0.3 fails to build properly under Solaris 8 (intel
    platform).  There are compile errors related to the "varargs"
    definitions.
    
    Here are the specifics:
    
        Version: 7.0.3
    
        OS:  Solaris 8 for Intel
    
        Compiler: gnu
    
         Fix:  I added the following to the file "c.h" in the "include"
    subdirectory:
    
                        #if defined(sun)
                        #include <stdarg.h>
                        #endif
    
    
    
    Sample Code
    
    
    No file was uploaded with this report
    
    
    
  2. Re: Installation failure for Solaris 8 Intel

    Tom Lane <tgl@sss.pgh.pa.us> — 2001-01-05T02:32:38Z

    pgsql-bugs@postgresql.org writes:
    >      Fix:  I added the following to the file "c.h" in the "include"
    > subdirectory:
    >                     #if defined(sun)
    >                     #include <stdarg.h>
    >                     #endif
    
    FYI, <stdarg.h> is included unconditionally in current sources ...
    
    			regards, tom lane