diff options
author | dos-reis <gdr@axiomatics.org> | 2008-04-29 15:25:28 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2008-04-29 15:25:28 +0000 |
commit | 7e465ce1b99903491c6132466808c9fa51ae500e (patch) | |
tree | 5f97fdd88cbada50122e5ef86c99d73157da8337 /configure | |
parent | 3223409ab97b1a6a8e60d541b0c7b5b69c8b9a83 (diff) | |
download | open-axiom-7e465ce1b99903491c6132466808c9fa51ae500e.tar.gz |
Cleanup, part 2.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 23 |
1 files changed, 14 insertions, 9 deletions
@@ -25612,19 +25612,24 @@ GCLOPTS="$axiom_gcl_emacs $axiom_gcl_bfd_option $axiom_gcl_mm_option $axiom_gcl_ -void_type='void' -char_type='char' -int_type='int' -float_type='float' -double_type='double' -string_type='string' -pointer_type='object' case $axiom_lisp_flavor in gcl) + void_type='void' + char_type='char' + int_type='int' + float_type='float' + double_type='double' + string_type='string' + pointer_type='object' ;; sbcl) - string_type='c-string' - pointer_type='system-area-pointer' + void_type='sb-alien:void' + char_type='sb-alien:char' + int_type='sb-alien:int' + float_type='sb-alien:float' + double_type='sb-alien:double' + string_type='sb-alien:c-string' + pointer_type='sb-alien:system-area-pointer' ;; clisp) void_type='nil' |