Unfortunately cygwin doesn't have InitCommonControlsEx at the moment to
link against so pre1 fails. Here's the fix.
andy
Index: src/device-msw.c
===================================================================
RCS file: /usr/CVSroot/XEmacs/xemacs-20/src/device-msw.c,v
retrieving revision 1.12
diff -u -r1.12 device-msw.c
--- src/device-msw.c 1998/04/23 02:08:01 1.12
+++ src/device-msw.c 1998/04/23 17:42:05
@@ -121,7 +121,11 @@
#ifdef HAVE_TOOLBARS
iccex.dwSize = sizeof (iccex);
iccex.dwICC = ICC_BAR_CLASSES;
+#ifdef __CYGWIN32__
+ InitCommonControls ();
+#else
InitCommonControlsEx (&iccex);
+#endif
#endif
}