]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
I have created a small patch that makes possible to compile pgsql on newer
authorBruce Momjian <bruce@momjian.us>
Tue, 12 Oct 1999 14:55:01 +0000 (14:55 +0000)
committerBruce Momjian <bruce@momjian.us>
Tue, 12 Oct 1999 14:55:01 +0000 (14:55 +0000)
Cygwin snapshots (tested on 990115 which is recommended to use - it fixes
some errors in B20.1)

And I have another patch for including <sys/ipc.h> before <sys/sem.h> in
backend/storage/lmgr/proc.c - it is required due the design of cygipc
headers

                        Dan

src/backend/storage/lmgr/proc.c
src/include/port/win.h

index d88ded9a7a8de31e7e792e8f2a8ddfc0a96df5b9..0f347910c9c1a8ffc58afbbd5e5a551d3fe66863 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.57 1999/05/25 22:42:03 momjian Exp $
+ *       $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.57.2.1 1999/10/12 14:55:00 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -46,7 +46,7 @@
  *             This is so that we can support more backends. (system-wide semaphore
  *             sets run out pretty fast.)                                -ay 4/95
  *
- * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.57 1999/05/25 22:42:03 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.57.2.1 1999/10/12 14:55:00 momjian Exp $
  */
 #include <sys/time.h>
 #include <unistd.h>
@@ -54,7 +54,7 @@
 #include <signal.h>
 #include <sys/types.h>
 
-#if defined(solaris_sparc)
+#if defined(solaris_sparc) || defined(__CYGWIN__)
 #include <sys/ipc.h>
 #include <sys/sem.h>
 #endif
index 15a89a0e43e2286ee9df4b4ad8cb29c5ec75ddff..61acdb3e21e75b05e9b53eac13f2891896b6db3a 100644 (file)
@@ -9,3 +9,8 @@ typedef unsigned char slock_t;
 #define tzname _tzname                 /* should be in time.h? */
 #define USE_POSIX_TIME
 #define HAVE_INT_TIMEZONE              /* has int _timezone */
+
+#include <cygwin/version.h>
+#if (CYGWIN_VERSION_API_MAJOR >= 0) && (CYGWIN_VERSION_API_MINOR >= 8)
+#define sys_nerr _sys_nerr
+#endif