diff options
author | dos-reis <gdr@axiomatics.org> | 2013-06-01 16:28:58 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2013-06-01 16:28:58 +0000 |
commit | df4fac6bb2474dd807709dbc2f8142ca6c513337 (patch) | |
tree | 92ff0b4c21a41d0680317434649d026e134eec99 /config | |
parent | 64aeafac79d72f440b6546bae91583e6efd6b674 (diff) | |
download | open-axiom-df4fac6bb2474dd807709dbc2f8142ca6c513337.tar.gz |
* interp/category.boot (filterConditionalCategories): Fix thinko.
Diffstat (limited to 'config')
-rw-r--r-- | config/open-axiom.m4 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config/open-axiom.m4 b/config/open-axiom.m4 index 85a75690..57db43bd 100644 --- a/config/open-axiom.m4 +++ b/config/open-axiom.m4 @@ -415,6 +415,7 @@ case $axiom_lisp_flavor in float_type='float' double_type='double' string_type='string' + pointer_type='fixnum' # well, this is from poking into GCL source code ;; sbcl) void_type='void' @@ -423,6 +424,7 @@ case $axiom_lisp_flavor in float_type='float' double_type='double' string_type='c-string' + pointer_type='(* t)' ;; clisp) void_type='nil' @@ -431,6 +433,7 @@ case $axiom_lisp_flavor in float_type='single-float' double_type='double-float' string_type='c-string' + pointer_type='c-pointer' ;; ecl) void_type=':void' @@ -439,6 +442,7 @@ case $axiom_lisp_flavor in float_type=':float' double_type=':double' string_type=':cstring' + pointer_type=':pointer-void' ;; clozure) void_type=':void' @@ -449,6 +453,7 @@ case $axiom_lisp_flavor in double_type=':double-float' # Clozure CL wants you to deal with your own mess string_type=':address' + pointer_type=':address' ;; *) AC_MSG_ERROR([We do not know how to translate native types for this Lisp]) |