diff options
author | dos-reis <gdr@axiomatics.org> | 2011-12-15 06:33:41 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2011-12-15 06:33:41 +0000 |
commit | 91d2034c53d206c701d5902c9a3879af4a0f16bd (patch) | |
tree | f39d9f439e1697f86d90493b7fb58b44cc32576c /src/lisp | |
parent | f0979b7e8bb0fb1a1e4a0bf1705117a930e36b57 (diff) | |
download | open-axiom-91d2034c53d206c701d5902c9a3879af4a0f16bd.tar.gz |
* 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.
Diffstat (limited to 'src/lisp')
-rw-r--r-- | src/lisp/core.lisp.in | 4 |
1 files changed, 2 insertions, 2 deletions
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 |