Message ID | 1409057503-25635-1-git-send-email-anders.roxell@linaro.org |
---|---|
State | Accepted |
Commit | 27bfb661840683d90faf141a6717ddbe68154b83 |
Headers | show |
Applied! Thanks, Maxim. On 08/26/2014 04:51 PM, Anders Roxell wrote: > Signed-off-by: Anders Roxell <anders.roxell@linaro.org> > --- > configure.ac | 8 ++++++++ > 1 file changed, 8 insertions(+) > > diff --git a/configure.ac b/configure.ac > index df20690..c9aac14 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -96,6 +96,14 @@ AM_CFLAGS="$AM_CFLAGS $PTHREAD_CFLAGS" > AM_LDFLAGS="$AM_LDFLAGS $PTHREAD_LDFLAGS" > > ########################################################################## > +# Check for doxygen availability > +########################################################################## > +AC_CHECK_PROGS([DOXYGEN], [doxygen]) > +if test -z "$DOXYGEN"; > + then AC_MSG_WARN([Doxygen not found - continuing without Doxygen support]) > +fi > + > +########################################################################## > # Check for openssl availability > ########################################################################## >
diff --git a/configure.ac b/configure.ac index df20690..c9aac14 100644 --- a/configure.ac +++ b/configure.ac @@ -96,6 +96,14 @@ AM_CFLAGS="$AM_CFLAGS $PTHREAD_CFLAGS" AM_LDFLAGS="$AM_LDFLAGS $PTHREAD_LDFLAGS" ########################################################################## +# Check for doxygen availability +########################################################################## +AC_CHECK_PROGS([DOXYGEN], [doxygen]) +if test -z "$DOXYGEN"; + then AC_MSG_WARN([Doxygen not found - continuing without Doxygen support]) +fi + +########################################################################## # Check for openssl availability ##########################################################################
Signed-off-by: Anders Roxell <anders.roxell@linaro.org> --- configure.ac | 8 ++++++++ 1 file changed, 8 insertions(+)