Re: [CORE] GPL Source and Copyright Questions

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [CORE] GPL Source and Copyright Questions
Дата
Msg-id 9051.1151021044@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: [CORE] GPL Source and Copyright Questions  (Andrew Dunstan <andrew@dunslane.net>)
Ответы Re: [CORE] GPL Source and Copyright Questions
Список pgsql-hackers
Andrew Dunstan <andrew@dunslane.net> writes:
> Meanwhile, I'd like to know how to fix the Cygwin build on HEAD. I 
> suspect it was the MSVC "improvements" that did it.

The patch to c.h certainly had no compunction about possibly changing
the behavior for Cygwin:

***************
*** 82,94 **** #endif  #if defined(WIN32) || defined(__CYGWIN__)
! #ifndef WIN32_CLIENT_ONLY
! /* We have to redefine some system functions after they are included above */
! #include "pg_config_os.h"
! #else
! #include "port/win32.h"            /* We didn't run configure, but this is our
!                                  * port file */
! #endif #endif  /* Must be before gettext() games below */
--- 80,90 ---- #endif  #if defined(WIN32) || defined(__CYGWIN__)
! /* We have to redefine some system functions after they are included above.
!  *
!  * use port/win32.h directly to work on both mingw and non-mingw.
!  */
! #include "port/win32.h" #endif  /* Must be before gettext() games below */

I'm not too sure about the changes in getaddrinfo.c, either.
        regards, tom lane


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

Предыдущее
От: Andrew Dunstan
Дата:
Сообщение: Re: [CORE] GPL Source and Copyright Questions
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Overhead for stats_command_string et al, take 2