aboutsummaryrefslogtreecommitdiff
path: root/configure.ac.pamphlet
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2008-05-22 02:06:20 +0000
committerdos-reis <gdr@axiomatics.org>2008-05-22 02:06:20 +0000
commit6fb5e2eb0ae14a03d0fda4f5a5e768744ee446ff (patch)
treef40198fa3ae3df3d66ed84ef390040c91fb9c60f /configure.ac.pamphlet
parentd928aee37862094d6e177ece2a3e07bd0498b5c9 (diff)
downloadopen-axiom-6fb5e2eb0ae14a03d0fda4f5a5e768744ee446ff.tar.gz
* configure.ac.pamphlet: Don't key all of HyperTex on X11.
Diffstat (limited to 'configure.ac.pamphlet')
-rw-r--r--configure.ac.pamphlet17
1 files changed, 6 insertions, 11 deletions
diff --git a/configure.ac.pamphlet b/configure.ac.pamphlet
index 027ed12d..62861424 100644
--- a/configure.ac.pamphlet
+++ b/configure.ac.pamphlet
@@ -423,18 +423,13 @@ of the HyperDoc components need X11. Some, such as [[htadd]], don't
need X11 at all. Therefore we have lifted part of the restrictions.
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. We still haven't clean up
-the X11 dependencies, so we are back to the old requirements.
+drawn in [[Unexpected HT command]] noise.
<<C headers and libraries>>=
-if test x"$axiom_use_x" != xyes; then
- AC_MSG_NOTICE([HyperDoc is disabled because it depends on X11])
-else
- 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.])])
-fi
+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.])])
@