Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
cd98a72c
Commit
cd98a72c
authored
Feb 04, 2009
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure.ac: make DocBook processing optional
Disable the HTML documentation generator by default. Most users will pick it from the web site.
parent
824d299e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
8 deletions
+13
-8
configure.ac
configure.ac
+12
-7
Makefile.am
doc/Makefile.am
+1
-1
No files found.
configure.ac
View file @
cd98a72c
...
...
@@ -1006,16 +1006,21 @@ dnl
dnl Documentation
dnl
AC_MSG_CHECKING([for xmlto (DocBook processing)])
AC_PATH_PROG(XMLTO, xmlto)
if test x$XMLTO != x; then
AC_ARG_ENABLE(documentation,
AS_HELP_STRING([--enable-documentation],
[build documentation (default: disable)]),,
[enable_documentation=no])
if test x$enable_documentation = xyes; then
AC_PATH_PROG(XMLTO, xmlto)
if test x$XMLTO = x; then
AC_MSG_ERROR([xmlto not found])
fi
AC_SUBST(XMLTO)
AC_MSG_RESULT($XMLTO)
else
AC_MSG_RESULT(no)
fi
AM_CONDITIONAL(
HAVE_XMLTO, test x$XMLTO != x
)
AM_CONDITIONAL(
ENABLE_DOCUMENTATION, test x$enable_documentation = xyes
)
dnl
...
...
doc/Makefile.am
View file @
cd98a72c
...
...
@@ -5,7 +5,7 @@ man_MANS = mpd.1 mpd.conf.5
doc_DATA
=
mpdconf.example
EXTRA_DIST
=
$(man_MANS)
$(DOCBOOK_FILES)
mpdconf.example
if
HAVE_XMLTO
if
ENABLE_DOCUMENTATION
protocoldir
=
$(docdir)
/protocol
protocol_DATA
=
$
(
wildcard protocol/
*
.html
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment