diff options
author | dos-reis <gdr@axiomatics.org> | 2011-01-01 17:52:42 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2011-01-01 17:52:42 +0000 |
commit | 2a4104845c1ad1bda28d9d03e6e29925479b1cff (patch) | |
tree | 19f03aaac02036a4256172357b222eca86ee07dd /config | |
parent | d732f18fcfad440e13a34ead6600ba06c02f9b99 (diff) | |
download | open-axiom-2a4104845c1ad1bda28d9d03e6e29925479b1cff.tar.gz |
* configure.ac: Reject ECL on Mac OS X as it cannot give reliable
information about its binary personality.
Diffstat (limited to 'config')
-rw-r--r-- | config/open-axiom.m4 | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/config/open-axiom.m4 b/config/open-axiom.m4 index c26b4cde..0146c224 100644 --- a/config/open-axiom.m4 +++ b/config/open-axiom.m4 @@ -49,6 +49,13 @@ if test x"$oa_include_gcl" != xyes; then ;; esac ;; + # ECL does not provide useful information for dectecing CPU precision + *ecl*) + case $target in + *darwin*) + AC_MSG_ERROR([We do not know how to extend this Lisp system with native libraries. Please consider SBCL or better]) + esac + ;; esac fi ]) |