pkgsrc/lang/drscheme/patches/patch-bd
groo 996a29aa6f Update DrScheme to 103p1. Changes include performance enhancements, minor
tweeks, and a new autoconf build system.

The package now conflicts with any installed version of mzscheme as it
builds with, and installs its own.
2001-09-05 03:52:47 +00:00

25 lines
612 B
Text

$NetBSD: patch-bd,v 1.2 2001/09/05 03:52:48 groo Exp $
--- mzscheme/gc/misc.c.orig Thu Oct 21 22:06:15 1999
+++ mzscheme/gc/misc.c Mon Jan 3 10:21:54 2000
@@ -58,6 +58,10 @@
# endif
# endif
+#if defined(NETBSD) && defined(__ELF__)
+void GC_init_netbsd_elf(void);
+#endif
+
GC_FAR struct _GC_arrays GC_arrays /* = { 0 } */;
@@ -430,6 +434,9 @@
# endif
# if defined(LINUX) && (defined(POWERPC) || defined(ALPHA) || defined(SPARC))
GC_init_linux_data_start();
+# endif
+# if defined(NETBSD) && defined(__ELF__)
+ GC_init_netbsd_elf();
# endif
# ifdef SOLARIS_THREADS
GC_thr_init();