diff options
author | dos-reis <gdr@axiomatics.org> | 2008-09-13 22:56:49 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2008-09-13 22:56:49 +0000 |
commit | 6feba77e44809a9eb39f9cc54bfa7c01f42eb098 (patch) | |
tree | 3ea8ae6d8b53684344a95beb77e7f73283f1b637 /configure.ac.pamphlet | |
parent | 65e866db45bf4713c62af9d727955d40c1f39b53 (diff) | |
download | open-axiom-6feba77e44809a9eb39f9cc54bfa7c01f42eb098.tar.gz |
* lisp/core.lisp.in (|$NativeTypeTable|): Don' include `pointer'
and `buffer'.
* lisp/Makefile.in (pointer_type): Remove.
(edit): Tidy.
* boot/ast.boot (nativeType): Tidy. Handle `pointer' and `buffer'
here.
* boot/translator.boot (genImportDeclaration): Tidy.
Diffstat (limited to 'configure.ac.pamphlet')
-rw-r--r-- | configure.ac.pamphlet | 28 |
1 files changed, 12 insertions, 16 deletions
diff --git a/configure.ac.pamphlet b/configure.ac.pamphlet index d2e359ac..7f0a7022 100644 --- a/configure.ac.pamphlet +++ b/configure.ac.pamphlet @@ -1016,25 +1016,22 @@ case $axiom_lisp_flavor in float_type='float' double_type='double' string_type='string' - pointer_type='object' ;; sbcl) - 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' + void_type='void' + char_type='char' + int_type='int' + float_type='float' + double_type='double' + string_type='c-string' ;; clisp) void_type='nil' - char_type='ffi:character' - int_type='ffi:int' - float_type='ffi:single-float' - double_type='ffi:double-float' - string_type='ffi:c-string' - pointer_type='ffi:c-pointer' + char_type='character' + int_type='int' + float_type='single-float' + double_type='double-float' + string_type='c-string' ;; ecl) void_type=':void' @@ -1043,7 +1040,6 @@ case $axiom_lisp_flavor in float_type=':float' double_type=':double' string_type=':cstring' - pointer_type=':pointer-void' ;; *) AC_MSG_ERROR([We do not know how to translate native types for this Lisp]) @@ -1131,7 +1127,7 @@ information: <<Autoconf init>>= sinclude(config/open-axiom.m4) sinclude(config/aclocal.m4) -AC_INIT([OpenAxiom], [1.3.0-2008-09-09], +AC_INIT([OpenAxiom], [1.3.0-2008-09-12], [open-axiom-bugs@lists.sf.net]) @ |