Re: [INTERFACES] Tcl_CreateExitHandle error - Mailing list pgsql-interfaces

From Thomas G. Lockhart
Subject Re: [INTERFACES] Tcl_CreateExitHandle error
Date
Msg-id 35C4F6D8.E313FD13@alumni.caltech.edu
Whole thread Raw
In response to Tcl_CreateExitHandle error  (Porter of PDSW <porter@cs.unipune.ernet.in>)
List pgsql-interfaces
> i tried compiling (LINUX_ELF set to true) postgres95

I assume you are actually trying the latest release, labeled PostgreSQL
v6.3.2?? If not, that is the one you should be working with.

> For any help
> if you need information on these warnings here they are ...
> /usr/lib/bison.simple:294: warning: implicit declaration of function `Int_yyerror'
> ..... similar errors snipped ......
> /usr/include/asm/bitops.h:23: warning: no previous prototype for `set_bit'
> ..... similar errors snipped ......

Down to here these are very normal "errors". yacc/bison doesn't declare
a prototype for the generated parsing routines so gcc complains since we
have warnings turned on. Also, Linux omits prototype declarations for
some inline bit manipulation assembler routines since the actual code is
in the .h file anyway. Causes the compiler to whine about missing
prototypes and, yes, they are missing...

Sorry, don't have any experience with the C++ and tcl warnings...

                    - Tom

pgsql-interfaces by date:

Previous
From: Tom Lane
Date:
Subject: Re: [INTERFACES] Re: [HACKERS] User authentication bug?
Next
From: "Thomas G. Lockhart"
Date:
Subject: Re: libpq on Windows (was [INTERFACES] psqlodbc)