From 0c80f4c62490bc6bd18d5a67a35047f9df071b25 Mon Sep 17 00:00:00 2001 From: Miguel de Icaza Date: Wed, 31 Mar 2004 18:21:56 +0000 Subject: [PATCH] 2004-03-31 Miguel de Icaza * configure.in: If monodoc is not found, then turn off enable_monodoc, so the value is properly propagated. svn path=/trunk/gtk-sharp/; revision=24864 --- ChangeLog | 5 +++++ configure.in | 3 +++ 2 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index d10f4e49c..f5f10cf5b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-03-31 Miguel de Icaza + + * configure.in: If monodoc is not found, then turn off + enable_monodoc, so the value is properly propagated. + 2004-03-31 Mike Kestner * configure.in : remove atk/glue/Makefile diff --git a/configure.in b/configure.in index c827a12d0..b367a4529 100644 --- a/configure.in +++ b/configure.in @@ -88,6 +88,9 @@ PKG_CHECK_MODULES(MONODOC_DEPENDENCY, monodoc >= $MONODOC_REQUIRED_VERSION, enab if test "x$enable_monodoc" = "xyes"; then AC_PATH_PROG(MONODOC, monodoc, no) + if x$MONODOC = xno; then + enable_monodoc=no + fi else MONODOC= fi