diff mbox

configure.ac: warn if doxygen isn't installed

Message ID 1409057503-25635-1-git-send-email-anders.roxell@linaro.org
State Accepted
Commit 27bfb661840683d90faf141a6717ddbe68154b83
Headers show

Commit Message

Anders Roxell Aug. 26, 2014, 12:51 p.m. UTC
Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
---
 configure.ac | 8 ++++++++
 1 file changed, 8 insertions(+)

Comments

Maxim Uvarov Aug. 27, 2014, 2:10 p.m. UTC | #1
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 mbox

Patch

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
 ##########################################################################