1-line fix to port/thread.c for compiling libpq with Borland C

Поиск
Список
Период
Сортировка
От L J Bayuk
Тема 1-line fix to port/thread.c for compiling libpq with Borland C
Дата
Msg-id 200402250043.i1P0hFhd000409@mindspring.com
обсуждение исходный текст
Ответы Re: 1-line fix to port/thread.c for compiling libpq with Borland  (Bruce Momjian <pgman@candle.pha.pa.us>)
Список pgsql-patches
Below please find a tiny patch to PostgreSQL-7.4.1 src/port/thread.c that I
found was necessary to compile libpq on Windows using Borland C++ Builder.
The patch causes the the WIN32 code to be included, and <pwd.h> skipped, if
under either WIN32 compiler, rather than just with MSVC.
(Alternative is to just use "#if defined(WIN32)", which works for me, but
I don't know if that would be safe.)


*** src/port/thread.c.orig    Mon Nov 24 08:11:27 2003
--- src/port/thread.c    Tue Feb 24 19:19:35 2004
***************
*** 16,22 ****

  #include <sys/types.h>
  #include <errno.h>
! #if defined(WIN32) && defined(_MSC_VER)
  #undef ERROR
  #else
  #include <pwd.h>
--- 16,22 ----

  #include <sys/types.h>
  #include <errno.h>
! #if defined(WIN32) && (defined(_MSC_VER) || defined(__BORLANDC__))
  #undef ERROR
  #else
  #include <pwd.h>


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: dollar quoting with flex
Следующее
От: Andrew Dunstan
Дата:
Сообщение: dollar quoting for plpgsql