Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Gxml
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
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
Canek Peláez Valdés
Gxml
Commits
06f4a5e0
Commit
06f4a5e0
authored
10 years ago
by
Daniel Espinosa
Browse files
Options
Downloads
Patches
Plain Diff
Fixed --enable-devhelp-doc enabled alone
parent
6d56cfd4
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
+12
-5
12 additions, 5 deletions
configure.ac
with
12 additions
and
5 deletions
configure.ac
+
12
−
5
View file @
06f4a5e0
...
@@ -173,19 +173,26 @@ AC_ARG_ENABLE([gtk-docs],
...
@@ -173,19 +173,26 @@ AC_ARG_ENABLE([gtk-docs],
AS_HELP_STRING([--enable-gtk-docs],[Enable gtk-doc documentation generation]),
AS_HELP_STRING([--enable-gtk-docs],[Enable gtk-doc documentation generation]),
[enable_gtk_docs=$enableval], [enable_gtk_docs=no])
[enable_gtk_docs=$enableval], [enable_gtk_docs=no])
AC_ARG_ENABLE([gir-docs],
AS_HELP_STRING([--enable-gir-docs],[Enable documented GIR generation]),
[enable_gir_docs=$enableval], [enable_gir_docs=no])
if test x$enable_devhelp_docs = xyes; then
if test x$have_valadoc = xno; then
AC_MSG_ERROR([You should require valadoc and gtk-doc, to generate devhelp documentation. Use --enable-valadoc and --enable-gtk-doc])
fi
fi
have_gtkdoc=no
have_gtkdoc=no
if test x$enable_gtk_docs = xyes; then
if test x$enable_gtk_docs = xyes; then
if test x$have_valadoc = xyes; then
if test x$have_valadoc = xyes; then
PKG_CHECK_MODULES([GTKDOC], gtk-doc)
PKG_CHECK_MODULES([GTKDOC], gtk-doc)
have_gtkdoc=yes
else
else
AC_MSG_ERROR([You should require valadoc
enabled
to generate gtk-doc documentation. Use --enable-valadoc])
AC_MSG_ERROR([You should require valadoc
,
to generate gtk-doc documentation. Use --enable-valadoc])
fi
fi
fi
fi
AC_ARG_ENABLE([gir-docs],
AS_HELP_STRING([--enable-gir-docs],[Enable documented GIR generation]),
[enable_gir_docs=$enableval], [enable_gir_docs=no])
dnl Find yelp-build program
dnl Find yelp-build program
enable_mallard_doc="no"
enable_mallard_doc="no"
...
...
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