Merged r5540 and r5542 from trunk:
authoredwin <none@none>
Thu, 28 Sep 2006 20:29:44 +0000 (20:29 +0000)
committeredwin <none@none>
Thu, 28 Sep 2006 20:29:44 +0000 (20:29 +0000)
* configure.ac: Cygwin OS dir added.
* src\lib\Makefile.am: Now checks for "zip.exe" as well
* src\vm\jit\i386\Makefile.am: Added Cygwin OS dir.
* src\vm\jit\i386\cygwin\Makefile.am: Added.
* src\vm\jit\i386\cygwin\md-os.c: Added. Only contains
dummy signal handlers.
* src\vm\builtin.c: Undefine Bias for Cygwin because
Windows uses this define.
* src\vm\signal.c: No signal handlers for Cygwin.

* src/vm/jit/i386/cygwin/.cvsignore: New file.

--HG--
branch : unified_variables

src/vm/builtin.c
src/vm/jit/i386/Makefile.am

index f21676a34fa781533454f58ab0a06925ad8f4964..0f96f2b2ea502ba14a57cde23701ab3a350c6266 100644 (file)
@@ -37,7 +37,7 @@
    calls instead of machine instructions, using the C calling
    convention.
 
-   $Id: builtin.c 5375 2006-09-06 16:01:23Z edwin $
+   $Id: builtin.c 5569 2006-09-28 20:29:44Z edwin $
 
 */
 
@@ -57,6 +57,9 @@
 #include "md-abi.h"
 
 #include "fdlibm/fdlibm.h"
+#if defined(__CYGWIN__) && defined(Bias)
+# undef Bias
+#endif
 
 #include "mm/boehm.h"
 #include "mm/memory.h"
index 89b90c006fbaef38a5c5003a38cb32ab48e57729..263533415a40f4063406f589defa99982fa1d8d8 100644 (file)
 ##
 ## Changes:
 ##
-## $Id: Makefile.am 5300 2006-09-05 10:15:55Z twisti $
+## $Id: Makefile.am 5569 2006-09-28 20:29:44Z edwin $
 
 ## Process this file with automake to produce Makefile.in
 
 DIST_SUBDIRS = \
+       cygwin \
        darwin \
        freebsd \
        linux