diff options
author | dos-reis <gdr@axiomatics.org> | 2008-05-22 15:25:13 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2008-05-22 15:25:13 +0000 |
commit | d8a4d498a6a0d1d34e25b6838b6450bd7d3e646f (patch) | |
tree | 235371f427deb172ac4d2920539094d20b12b20b /configure.ac.pamphlet | |
parent | 3b89765b4d9c01a2f083e08b569e9b33b16ac617 (diff) | |
download | open-axiom-d8a4d498a6a0d1d34e25b6838b6450bd7d3e646f.tar.gz |
Avoid numeric constants macros.
Diffstat (limited to 'configure.ac.pamphlet')
-rw-r--r-- | configure.ac.pamphlet | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/configure.ac.pamphlet b/configure.ac.pamphlet index 62861424..b9b06c1f 100644 --- a/configure.ac.pamphlet +++ b/configure.ac.pamphlet @@ -425,11 +425,11 @@ See \File{src/hyper/Makefile} for more details. Note that is we don't build the HyperDoc component, the compilation of algebra files are drawn in [[Unexpected HT command]] noise. <<C headers and libraries>>= +openaxiom_host_has_regex= AC_CHECK_HEADER([regex.h], - [axiom_src_all="$axiom_src_all all-hyper" - axiom_src_subdirs="$axiom_src_subdirs hyper" - AXIOM_MAKEFILE([src/hyper/Makefile])], - [AC_MSG_NOTICE([HyperDoc is disabled.])]) + [openaxiom_host_has_regex=yes], + [openaxiom_host_has_regex=no]) +AC_SUBST(openaxiom_host_has_regex) @ @@ -1165,6 +1165,7 @@ AC_CONFIG_SRCDIR(src/Makefile.pamphlet) AXIOM_MAKEFILE([Makefile]) AXIOM_MAKEFILE([src/Makefile]) AXIOM_MAKEFILE([src/lib/Makefile]) +AXIOM_MAKEFILE([src/hyper/Makefile]) AXIOM_MAKEFILE([src/driver/Makefile]) AXIOM_MAKEFILE([src/lisp/Makefile]) AXIOM_MAKEFILE([src/boot/Makefile]) @@ -1276,7 +1277,7 @@ AC_SUBST(oa_shrlib_flags) <<runtime checking>> -axiom_src_subdirs="lib lisp boot interp share algebra input etc doc" +axiom_src_subdirs="lib hyper lisp boot interp share algebra input etc doc" AC_SUBST(axiom_src_subdirs) <<host build target platfoms>> |