summaryrefslogtreecommitdiff
path: root/lang/sbcl/patches
diff options
context:
space:
mode:
authorasau <asau@pkgsrc.org>2010-08-30 00:18:57 +0000
committerasau <asau@pkgsrc.org>2010-08-30 00:18:57 +0000
commit4b44987632409d92753103803d1df925ecaea4da (patch)
tree94440587e3be998a0078ba1c203dfccefffac053 /lang/sbcl/patches
parent4839db66286546e24c86c980bf3d8750b1416105 (diff)
downloadpkgsrc-4b44987632409d92753103803d1df925ecaea4da.tar.gz
Update to SBCL 1.0.42
changes in sbcl-1.0.42 relative to sbcl-1.0.41 * build changes ** Cross-compilation host is now specified to make.sh using command-line argument --xc-host=<command> instead of a positional argument. (thanks to Daniel Herring) ** Install location can be specified to make.sh using command-line argument --prefix=<path>. (lp#550889s, thanks to Daniel Herring) * optimization: The default implementation of COMPUTE-DISCRIMINATING-FUNCTION does much less wasted work. * enhancement: Explicit memory barrier operations are now available for use by multithreaded code. See documentation for details. * enhancement: Experimental support for threading on Linux/PPC. * bug fix: RENAME-PACKAGE returns the package. (Thanks to Eric Marsden) * bug fix: EXPT signals an error if first argument is a zero and second argument is a floating point zero. (lp#571581, thanks to Roman Marynchak) * bug fix: DEFTYPE signals an error for non-list lambda-lists. (lp#576594, thanks to Roman Marynchak) * bug fix: make ASDF-INSTALL compatible with the now-included ASDF2. (lp#612998, reported by Phil Hargett; patch from Jim Wise)
Diffstat (limited to 'lang/sbcl/patches')
-rw-r--r--lang/sbcl/patches/patch-aa13
-rw-r--r--lang/sbcl/patches/patch-ac17
2 files changed, 0 insertions, 30 deletions
diff --git a/lang/sbcl/patches/patch-aa b/lang/sbcl/patches/patch-aa
deleted file mode 100644
index e45f35ec376..00000000000
--- a/lang/sbcl/patches/patch-aa
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-aa,v 1.2 2009/08/19 13:03:30 asau Exp $
-
---- src/runtime/runtime.c.orig 2009-03-23 00:44:07.000000000 +0300
-+++ src/runtime/runtime.c 2009-05-24 09:46:18.000000000 +0400
-@@ -67,7 +67,7 @@
- #endif
-
- #ifndef SBCL_HOME
--#define SBCL_HOME "/usr/local/lib/sbcl/"
-+#define SBCL_HOME "@PREFIX@/lib/sbcl/"
- #endif
-
- #ifdef LISP_FEATURE_HPUX
diff --git a/lang/sbcl/patches/patch-ac b/lang/sbcl/patches/patch-ac
deleted file mode 100644
index f6343f0ff48..00000000000
--- a/lang/sbcl/patches/patch-ac
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-ac,v 1.2 2007/01/14 05:56:29 jonb Exp $
-
---- ./install.sh.orig 2006-09-24 08:47:27.000000000 -0700
-+++ ./install.sh 2007-01-12 22:34:18.000000000 -0800
-@@ -19,9 +19,9 @@
- RUNTIME=sbcl
- OLD_RUNTIME=sbcl.old
- fi
--INSTALL_ROOT=${INSTALL_ROOT-$DEFAULT_INSTALL_ROOT}
--MAN_DIR=${MAN_DIR-"$INSTALL_ROOT"/share/man}
--INFO_DIR=${INFO_DIR-"$INSTALL_ROOT"/share/info}
-+INSTALL_ROOT=${INSTALL_ROOT-@PREFIX@}
-+MAN_DIR=${MAN_DIR-"$INSTALL_ROOT"/man}
-+INFO_DIR=${INFO_DIR-"$INSTALL_ROOT"/info}
- DOC_DIR=${DOC_DIR-"$INSTALL_ROOT"/share/doc/sbcl}
-
- # Does the environment look sane?