Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
libxml2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OpenVMS
libraries
libxml2
Commits
fcd171a9f295
Commit
fcd171a9f295
authored
3 years ago
by
Nick Wellnhofer
Browse files
Options
Downloads
Patches
Plain Diff
Disable docbook support by default
The docbook code is broken and has been deprecated for years.
parent
0553e09ff27d
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
configure.ac
+3
-7
3 additions, 7 deletions
configure.ac
with
3 additions
and
7 deletions
configure.ac
+
3
−
7
View file @
fcd171a9
...
@@ -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 (o
n
)])
[ --with-docbook add Docbook SGML support (o
ff
)])
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=
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment