features: report cxx-core correctly

This commit is contained in:
Daniel Kochmański 2016-10-08 13:03:24 +02:00
parent 3f3af5275d
commit 1d8da4dd6e
3 changed files with 7 additions and 0 deletions

2
src/configure vendored
View file

@ -9728,6 +9728,7 @@ fi
ac_config_files="$ac_config_files bare.lsp lsp/load.lsp clos/load.lsp cmp/load.lsp ../Makefile Makefile c/Makefile doc/Makefile doc/ecl.man doc/ecl-config.man ecl/configpre.h:h/config.h.in ecl/configpre-int.h:h/config-internal.h.in bin/ecl-config.pre:util/ecl-config lsp/config.pre:lsp/config.lsp.in compile.pre:compile.lsp.in cmp/cmpdefs.pre:cmp/cmpdefs.lsp tests/config.lsp tests/Makefile"
ac_config_headers="$ac_config_headers ecl/config.h:ecl/configpre.h"
ac_config_headers="$ac_config_headers ecl/config-internal.h:ecl/configpre-int.h"
@ -11029,4 +11030,5 @@ if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
fi
for i in $srcdir/c/*/; do mkdir -p c/`basename $i`; done

View file

@ -929,7 +929,9 @@ AC_CONFIG_FILES([
tests/config.lsp
tests/Makefile
])
AC_CONFIG_HEADERS([ecl/config.h:ecl/configpre.h])
AC_CONFIG_HEADERS([ecl/config-internal.h:ecl/configpre-int.h])
AC_OUTPUT
for i in $srcdir/c/*/; do mkdir -p c/`basename $i`; done

View file

@ -222,6 +222,9 @@ typedef unsigned char ecl_base_char;
/* We can use small, two-words conses, without type information */
#undef ECL_SMALL_CONS
/* Do we use C or C++ compiler to compile ecl? */
#undef ECL_CXX_CORE
/* Use CMU Common-Lisp's FORMAT routine */
#undef ECL_CMU_FORMAT