Re: [HACKERS] 6.5.1

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [HACKERS] 6.5.1
Дата
Msg-id 10704.931644961@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: [HACKERS] 6.5.1  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: [HACKERS] 6.5.1  (Bruce Momjian <maillist@candle.pha.pa.us>)
Список pgsql-hackers
I wrote:
> And, right offhand, I'm not seeing where <time.h> gets included before
> heapam.h is read.

I dug into this and found that on my own machine, <sys/time.h> is pulled
in by <arpa/inet.h> which is pulled in by config.h (if the right
configuration symbols are defined).  It looks to me like there is
noplace that explicitly pulls in <time.h> before heapam.h is read.

In short, what we've got here is code that only works because of
interdependencies among system headers.  Not too portable.

I added "#include <time.h>" to heapam.h, which I think will fix Oleg's
problem, but I'm a little bit mystified why we didn't find this long
ago.  Someone must have removed an #include somewhere that covered up
the problem...
        regards, tom lane


В списке pgsql-hackers по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: [HACKERS] 6.5.1
Следующее
От: pgsql-hackers@thewrittenword.com
Дата:
Сообщение: ...