2008-05-19 Tor Lillqvist <tml@novell.com>
* glib/Makefile.am: #define HELPER_CONSOLE in
gspawn-win32-helper-console.c
* glib/gspawn-win32-helper.c: Compile a main() instead of
WinMain() if HELPER_CONSOLE is defined.
svn path=/trunk/; revision=6909
+2008-05-19 Tor Lillqvist <tml@novell.com>
+
+ * glib/Makefile.am: #define HELPER_CONSOLE in
+ gspawn-win32-helper-console.c
+
+ * glib/gspawn-win32-helper.c: Compile a main() instead of
+ WinMain() if HELPER_CONSOLE is defined.
+
2008-05-18 Matthias Clasen <mclasen@redhat.com>
Bug 527214 – g_timer_elapsed() returns random values.
INSTALL_PROGS=
gspawn-win32-helper-console.c:
- echo '#include "gspawn-win32-helper.c"' >$@
+ echo '#define HELPER_CONSOLE' >$@
+ echo '#include "gspawn-win32-helper.c"' >>$@
if OS_WIN32
INSTALL_PROGS += gspawn-win32-helper gspawn-win32-helper-console
return argc;
}
+#ifndef HELPER_CONSOLE
int _stdcall
WinMain (struct HINSTANCE__ *hInstance,
struct HINSTANCE__ *hPrevInstance,
char *lpszCmdLine,
int nCmdShow)
+#else
+int
+main (int ignored_argc, char **ignored_argv)
+#endif
{
int child_err_report_fd = -1;
int helper_sync_fd = -1;