gcl-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gcl-devel] proposed patches for Mac OS X


From: Aurelien Chanudet
Subject: [Gcl-devel] proposed patches for Mac OS X
Date: Thu, 4 Sep 2003 23:15:11 +0200

What about the following patches ?

--- o/main.c.old Sun Aug 31 31 2003
+++ o/main.c Sun Aug 31 26 2003
@@ 6 11 @@
#endif
#endif


+#if defined(DARWIN)
+ extern void init_darwin_zone_compat ();
+ init_darwin_zone_compat ();
+#endif
+
#ifdef RECREATE_HEAP
RECREATE_HEAP
#endif

--- o/unixfasl.c.old Mon Sep 1 19:00:17 2003
+++ o/unixfasl.c Mon Aug 18 21:37:48 2003
@@ -282,7 +282,7 @@
static int
faslink(object faslfile, object ldargstring)
{
-#if defined(__linux__) && defined(__ELF__)
+#if (defined(__linux__) && defined(__ELF__)) || defined(DARWIN)
FEerror("faslink() not supported for ELF yet",0);
return 0;
#else

Aurelien

reply via email to

[Prev in Thread] Current Thread [Next in Thread]