Re: [INTERFACES] Tcl_CreateExitHandle error

Поиск
Список
Период
Сортировка
От Thomas G. Lockhart
Тема Re: [INTERFACES] Tcl_CreateExitHandle error
Дата
Msg-id 35C4F6D8.E313FD13@alumni.caltech.edu
обсуждение исходный текст
Ответ на Tcl_CreateExitHandle error  (Porter of PDSW <porter@cs.unipune.ernet.in>)
Список 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 по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: [INTERFACES] Re: [HACKERS] User authentication bug?
Следующее
От: "Thomas G. Lockhart"
Дата:
Сообщение: Re: libpq on Windows (was [INTERFACES] psqlodbc)