Minor Cygwin fix. (#138405, Roger Leigh)
authorTor Lillqvist <tml@iki.fi>
Wed, 31 Mar 2004 02:13:52 +0000 (02:13 +0000)
committerTor Lillqvist <tml@src.gnome.org>
Wed, 31 Mar 2004 02:13:52 +0000 (02:13 +0000)
2004-03-31  Tor Lillqvist  <tml@iki.fi>

* tests/spawn-test-win32-gui.c: Minor Cygwin fix. (#138405, Roger
Leigh)

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
tests/spawn-test-win32-gui.c

index 2d3e58f..041c01e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-03-31  Tor Lillqvist  <tml@iki.fi>
+
+       * tests/spawn-test-win32-gui.c: Minor Cygwin fix. (#138405, Roger
+       Leigh)
+
 2004-03-30  Adam Weinberger  <adamw@gnome.org>
 
        * configure.in: Added en_CA to ALL_LINGUAS.
index 2d3e58f..041c01e 100644 (file)
@@ -1,3 +1,8 @@
+2004-03-31  Tor Lillqvist  <tml@iki.fi>
+
+       * tests/spawn-test-win32-gui.c: Minor Cygwin fix. (#138405, Roger
+       Leigh)
+
 2004-03-30  Adam Weinberger  <adamw@gnome.org>
 
        * configure.in: Added en_CA to ALL_LINGUAS.
index 2d3e58f..041c01e 100644 (file)
@@ -1,3 +1,8 @@
+2004-03-31  Tor Lillqvist  <tml@iki.fi>
+
+       * tests/spawn-test-win32-gui.c: Minor Cygwin fix. (#138405, Roger
+       Leigh)
+
 2004-03-30  Adam Weinberger  <adamw@gnome.org>
 
        * configure.in: Added en_CA to ALL_LINGUAS.
index 2d3e58f..041c01e 100644 (file)
@@ -1,3 +1,8 @@
+2004-03-31  Tor Lillqvist  <tml@iki.fi>
+
+       * tests/spawn-test-win32-gui.c: Minor Cygwin fix. (#138405, Roger
+       Leigh)
+
 2004-03-30  Adam Weinberger  <adamw@gnome.org>
 
        * configure.in: Added en_CA to ALL_LINGUAS.
index 2d3e58f..041c01e 100644 (file)
@@ -1,3 +1,8 @@
+2004-03-31  Tor Lillqvist  <tml@iki.fi>
+
+       * tests/spawn-test-win32-gui.c: Minor Cygwin fix. (#138405, Roger
+       Leigh)
+
 2004-03-30  Adam Weinberger  <adamw@gnome.org>
 
        * configure.in: Added en_CA to ALL_LINGUAS.
index 2d3e58f..041c01e 100644 (file)
@@ -1,3 +1,8 @@
+2004-03-31  Tor Lillqvist  <tml@iki.fi>
+
+       * tests/spawn-test-win32-gui.c: Minor Cygwin fix. (#138405, Roger
+       Leigh)
+
 2004-03-30  Adam Weinberger  <adamw@gnome.org>
 
        * configure.in: Added en_CA to ALL_LINGUAS.
index aade3e7..45529d0 100644 (file)
@@ -1,9 +1,18 @@
 #include <windows.h>
+#include <errno.h>
 #include <stdio.h>
 #include <string.h>
 #include <stdlib.h>
 #include <fcntl.h>
 
+#ifdef __CYGWIN__
+/* For read() and write() */
+#include <unistd.h>
+/* Cygwin does not prototype __argc and __argv in stdlib.h */
+extern int __argc;
+extern char** __argv;
+#endif
+
 int _stdcall
 WinMain (struct HINSTANCE__ *hInstance,
        struct HINSTANCE__ *hPrevInstance,