| Commit message (Expand) | Author | Age | Files | Lines |
| * | Add emulation of non-blocking sockets to the win32 socket/signal layer, | Magnus Hagander | 2010-02-16 | 1 | -1/+3 |
| * | Support inlining various small performance-critical functions on non-GCC | Tom Lane | 2010-02-13 | 1 | -10/+1 |
| * | Make RADIUS authentication use pg_getaddrinfo_all() to get address of | Magnus Hagander | 2010-02-02 | 1 | -9/+1 |
| * | Define INADDR_NONE on Solaris when it's missing. Per a couple of buildfarm | Magnus Hagander | 2010-01-28 | 1 | -1/+9 |
| * | Make ssize_t 64-bit on Win64, for compatibility with for example plpython. | Magnus Hagander | 2010-01-02 | 1 | -1/+5 |
| * | Change our WIN32 API version to be 5.01 (Windows XP), to bring in the proper | Magnus Hagander | 2009-09-07 | 1 | -2/+2 |
| * | Reserve the shared memory region during backend startup on Windows, so | Magnus Hagander | 2009-07-24 | 1 | -1/+4 |
| * | 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef list | Bruce Momjian | 2009-06-11 | 10 | -18/+16 |
| * | Assorted portability fixes for Borland C, from Pavel Golub. | Tom Lane | 2009-04-19 | 1 | -2/+20 |
| * | Make win32 builds always do SetEnvironmentVariable() when doing putenv(). | Magnus Hagander | 2009-01-21 | 1 | -1/+6 |
| * | Update MinGW so it handles fseeko() similar to Unix. | Bruce Momjian | 2009-01-07 | 1 | -1/+13 |
| * | Move carefully obscured SunOS 4 specific #include out of c.h into port | Peter Eisentraut | 2008-12-11 | 1 | -1/+3 |
| * | Add $PostgreSQL$ markers to a lot of files that were missing them. | Andrew Dunstan | 2008-05-17 | 9 | -4/+31 |
| * | Replace time_t with pg_time_t (same values, but always int64) in on-disk | Tom Lane | 2008-02-17 | 1 | -12/+2 |
| * | Don't enforce 32-bit time_t for FRONTEND apps. Fixes standalone | Magnus Hagander | 2008-01-09 | 1 | -2/+2 |
| * | Use _USE_32BIT_TIME_T when building with MSVC. Also, enforce that it's | Magnus Hagander | 2007-12-11 | 1 | -1/+12 |
| * | Borland BCC does not support SSPI, per cnliou9@fastmail.fm. | Bruce Momjian | 2007-11-24 | 1 | -2/+3 |
| * | Borland CC 5.5.1 needs ssize_t, per cnliou9@fastmail.fm. | Bruce Momjian | 2007-11-24 | 1 | -2/+2 |
| * | pgindent run for 8.3. | Bruce Momjian | 2007-11-15 | 3 | -16/+16 |
| * | New versions of mingw have gettimeofday(), so add an autoconf test | Magnus Hagander | 2007-10-29 | 1 | -1/+7 |
| * | Change win32 child-death tracking code to use a threadpool to wait for | Magnus Hagander | 2007-10-26 | 1 | -1/+2 |
| * | Rename DLLIMPORT macro to PGDLLIMPORT to avoid conflict with | Magnus Hagander | 2007-07-25 | 2 | -9/+9 |
| * | Make it possible, and default, for MingW to build with SSPI support | Magnus Hagander | 2007-07-24 | 1 | -1/+8 |
| * | Fix failure to restart Postgres when Linux kernel returns EIDRM for shmctl(). | Tom Lane | 2007-07-02 | 1 | -1/+14 |
| * | Now that core functionality is depending on autoconf's AC_C_BIGENDIAN to be | Tom Lane | 2007-04-06 | 11 | -155/+8 |
| * | Remove headers for old sysv shmem emulation that I forgot. | Magnus Hagander | 2007-03-23 | 1 | -37/+1 |
| * | On Windows, use pgwin32_waitforsinglesocket() instead of select() to wait for | Tom Lane | 2007-01-26 | 1 | -2/+2 |
| * | Update Win32 exception comment. | Bruce Momjian | 2007-01-25 | 1 | -3/+5 |
| * | Add comment about exception lists in both winnt.h and ntstatus.h. | Bruce Momjian | 2007-01-23 | 1 | -1/+15 |
| * | Back out use of FormatMessage(), does error values, not exception | Bruce Momjian | 2007-01-23 | 1 | -20/+8 |
| * | Print meaningfull error text for abonormal process exit on Win32, rather | Bruce Momjian | 2007-01-23 | 1 | -7/+20 |
| * | Uppercase hex value. | Bruce Momjian | 2007-01-22 | 1 | -2/+2 |
| * | When system() fails in Win32, report it as an exception, print the | Bruce Momjian | 2007-01-22 | 1 | -10/+32 |
| * | Allow Borland CC to compile libpq and psql. | Bruce Momjian | 2007-01-11 | 1 | -1/+9 |
| * | Make sure BYTE_ORDER gets defined in 64-bit builds on Solaris, | Tom Lane | 2007-01-10 | 1 | -1/+12 |
| * | finite() no longer used; remove finite() platform-specific | Bruce Momjian | 2007-01-02 | 1 | -2/+1 |
| * | Further MSVC portability fixes from Magnus. | Tom Lane | 2006-10-19 | 1 | -1/+14 |
| * | Work around buggy strtod on (some versions of?) IRIX. Combination of | Tom Lane | 2006-10-05 | 1 | -1/+7 |
| * | Update Solaris strtod() bug comment. | Bruce Momjian | 2006-10-04 | 1 | -3/+3 |
| * | Update Solaris strtol() bug comment. | Bruce Momjian | 2006-10-04 | 1 | -2/+7 |
| * | pgindent run for 8.2. | Bruce Momjian | 2006-10-04 | 14 | -32/+28 |
| * | Rearrange MSVC errcode hack, fix incorrect _MSC_VER test. Magnus | Tom Lane | 2006-10-03 | 1 | -4/+1 |
| * | Move WIN32_ONLY_COMPILER define from c.h to win32.h because it was being | Bruce Momjian | 2006-10-03 | 1 | -1/+5 |
| * | Define errcode as __msvc_errcode not __vc_errcode for MSVC builds, | Tom Lane | 2006-09-16 | 1 | -2/+2 |
| * | Return inline to win32.h because code was OK, but keep additional | Bruce Momjian | 2006-08-10 | 1 | -1/+10 |
| * | Move "#define inline __inline" from port/win32.h to c.h because Win32 | Bruce Momjian | 2006-08-10 | 1 | -4/+1 |
| * | Formatting improvement. | Bruce Momjian | 2006-08-09 | 1 | -2/+2 |
| * | Fix definition of "errcode" for MSVC. | Bruce Momjian | 2006-08-08 | 1 | -1/+4 |
| * | Fix WIN32 wait() return value macros to be accurate, particularly | Bruce Momjian | 2006-07-30 | 1 | -6/+11 |
| * | In a Windows backend, don't build src/port/pgsleep.c's version of | Tom Lane | 2006-07-16 | 1 | -6/+1 |