Update of /cvsroot/sbcl/sbcl/src/compiler/x86-64
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv6783/src/compiler/x86-64
Modified Files:
parms.lisp
Log Message:
1.0.3.18: Fix build on FreeBSD/amd64
Index: parms.lisp
===================================================================
RCS file: /cvsroot/sbcl/sbcl/src/compiler/x86-64/parms.lisp,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- parms.lisp 3 Mar 2007 00:42:02 -0000 1.22
+++ parms.lisp 3 Mar 2007 07:19:37 -0000 1.23
@@ -97,7 +97,7 @@
;;; would be possible, but probably not worth the time and code bloat
;;; it would cause. -- JES, 2005-12-11
-#!+linux
+#!+(or linux freebsd)
(progn
(def!constant read-only-space-start #x20000000)
(def!constant read-only-space-end #x27ff0000)
|