summaryrefslogtreecommitdiff
path: root/config/gr_doxygen.m4
diff options
context:
space:
mode:
authoreb2007-11-10 01:03:04 +0000
committereb2007-11-10 01:03:04 +0000
commitbf89a84441f33f17f29ce238d9920f87a4d3b540 (patch)
treeb0e7e61df1d018b7132719bdaedba6012873fbe2 /config/gr_doxygen.m4
parent83200c22baaf6d2619035966bf8da1d662d8a9de (diff)
downloadgnuradio-bf89a84441f33f17f29ce238d9920f87a4d3b540.tar.gz
gnuradio-bf89a84441f33f17f29ce238d9920f87a4d3b540.tar.bz2
gnuradio-bf89a84441f33f17f29ce238d9920f87a4d3b540.zip
Merged -r6847:6850 from eb/trial-merge into trunk. This changeset
contains the modifications required to cross-compile GNU Radio for the Cell processor. For directions, see CrossCompilingForCell git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@6852 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'config/gr_doxygen.m4')
-rw-r--r--config/gr_doxygen.m415
1 files changed, 11 insertions, 4 deletions
diff --git a/config/gr_doxygen.m4 b/config/gr_doxygen.m4
index 4670c29d2..43433098d 100644
--- a/config/gr_doxygen.m4
+++ b/config/gr_doxygen.m4
@@ -20,10 +20,17 @@ dnl Boston, MA 02110-1301, USA.
dnl
AC_DEFUN([GR_CHECK_DOXYGEN],[
- AC_ARG_ENABLE(doxygen, [ --enable-doxygen enable documentation generation with doxygen (no)])
- AC_ARG_ENABLE(dot, [ --enable-dot use 'dot' to generate graphs in doxygen (auto)])
- AC_ARG_ENABLE(html-docs, [ --enable-html-docs enable HTML generation with doxygen (yes)], [], [ enable_html_docs=yes])
- AC_ARG_ENABLE(latex-docs, [ --enable-latex-docs enable LaTeX doc generation with doxygen (no)], [], [ enable_latex_docs=no])
+ AC_ARG_ENABLE(doxygen,
+ AC_HELP_STRING([--enable-doxygen],
+ [enable documentation generation with doxygen (no)]))
+ AC_ARG_ENABLE(dot, AC_HELP_STRING([--enable-dot],[use 'dot' to generate graphs in doxygen (auto)]))
+ AC_ARG_ENABLE(html-docs,
+ AC_HELP_STRING([--enable-html-docs],[enable HTML generation with doxygen (yes)]),
+ [], [ enable_html_docs=yes])
+ AC_ARG_ENABLE(latex-docs,
+ AC_HELP_STRING([--enable-latex-docs],
+ [enable LaTeX doc generation with doxygen (no)]),
+ [], [ enable_latex_docs=no])
if test "x$enable_doxygen" = xyes; then
AC_PATH_PROG(DOXYGEN, doxygen, , $PATH)