From 91d2034c53d206c701d5902c9a3879af4a0f16bd Mon Sep 17 00:00:00 2001 From: dos-reis Date: Thu, 15 Dec 2011 06:33:41 +0000 Subject: * config/open-axiom.m4 (OPENAXIOM_DYNAMIC_MODULE_SUPPORT): Fix linker flags when building for Windows. * lisp/core.lisp.in: Do not require SB-SPROF or SB-POSIX on Windows. --- src/ChangeLog | 4 ++++ src/lisp/core.lisp.in | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/ChangeLog b/src/ChangeLog index 9390281e..386c9887 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2011-12-15 Gabriel Dos Reis + + * lisp/core.lisp.in: Do not require SB-SPROF or SB-POSIX on Windows. + 2011-12-14 Gabriel Dos Reis * interp/g-opt.boot (packWhen!): Tidy. diff --git a/src/lisp/core.lisp.in b/src/lisp/core.lisp.in index 948df067..7535ba70 100644 --- a/src/lisp/core.lisp.in +++ b/src/lisp/core.lisp.in @@ -369,7 +369,7 @@ (defconstant |$EnableLispProfiling| @oa_enable_profiling@)) (eval-when (:compile-toplevel :load-toplevel :execute) - (progn #+sbcl (require :sb-sprof))) + (progn #+(and :sbcl (not :win32)) (require :sb-sprof))) ;; Return true if the full OpenAxiom algebra system is completed ;; built. @@ -1358,7 +1358,7 @@ ;; -*- Lisp Implementatiom-dependent Supports -*- -#+ :sbcl +#+(and :sbcl (not :win32)) (require "sb-posix") #+ :sbcl -- cgit v1.2.3