Skip to content
Snippets Groups Projects
Commit fcd171a9f295 authored by Nick Wellnhofer's avatar Nick Wellnhofer
Browse files

Disable docbook support by default

The docbook code is broken and has been deprecated for years.
parent 0553e09ff27d
Branches
Tags
No related merge requests found
...@@ -98,7 +98,7 @@ ...@@ -98,7 +98,7 @@
AC_ARG_WITH(debug, AC_ARG_WITH(debug,
[ --with-debug add the debugging module (on)]) [ --with-debug add the debugging module (on)])
AC_ARG_WITH(docbook, AC_ARG_WITH(docbook,
[ --with-docbook add Docbook SGML support (on)]) [ --with-docbook add Docbook SGML support (off)])
AC_ARG_WITH(fexceptions, AC_ARG_WITH(fexceptions,
[ --with-fexceptions add GCC flag -fexceptions for C++ exceptions (off)]) [ --with-fexceptions add GCC flag -fexceptions for C++ exceptions (off)])
AC_ARG_WITH(ftp, AC_ARG_WITH(ftp,
...@@ -246,10 +246,6 @@ ...@@ -246,10 +246,6 @@
then then
with_debug=no with_debug=no
fi fi
if test "$with_docbook" = ""
then
with_docbook=no
fi
if test "$with_fexceptions" = "" if test "$with_fexceptions" = ""
then then
with_fexceptions=no with_fexceptions=no
...@@ -968,7 +964,7 @@ ...@@ -968,7 +964,7 @@
with_run_debug="yes" with_run_debug="yes"
fi fi
if test "${with_docbook}" = "" ; then if test "${with_docbook}" = "" ; then
with_docbook="yes" with_docbook="no"
fi fi
fi fi
if test "${GCC}" = "yes" ; then if test "${GCC}" = "yes" ; then
...@@ -1266,7 +1262,7 @@ ...@@ -1266,7 +1262,7 @@
AC_SUBST(CATALOG_OBJ) AC_SUBST(CATALOG_OBJ)
AC_SUBST(TEST_CATALOG) AC_SUBST(TEST_CATALOG)
if test "$with_docbook" = "no" ; then if test "$with_docbook" != "yes" ; then
echo Disabling Docbook support echo Disabling Docbook support
WITH_DOCB=0 WITH_DOCB=0
DOCB_OBJ= DOCB_OBJ=
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment