Fix problem where meaning of --enable-bonobo-conf was the opposite of what

2001-07-26  Bradford Hovinen  <hovinen@ximian.com>

	* configure.in (AC_ARG_ENABLE): Fix problem where meaning of
	--enable-bonobo-conf was the opposite of what it should have been
This commit is contained in:
Bradford Hovinen 2001-07-26 15:32:47 +00:00 committed by Bradford Hovinen (Gdict maintainer)
parent 5d70883064
commit 677cf6d0a4
2 changed files with 19 additions and 7 deletions

View file

@ -1,3 +1,8 @@
2001-07-26 Bradford Hovinen <hovinen@ximian.com>
* configure.in (AC_ARG_ENABLE): Fix problem where meaning of
--enable-bonobo-conf was the opposite of what it should have been
2001-07-25 Chema Celorio <chema@celorio.com>
* configure.in (PKG_BONOBO_CONF_CHECK): update the requirements for

View file

@ -94,14 +94,14 @@ dnl ==============================================
dnl Check for --enable-bonobo-conf option
dnl ==============================================
CC_USE_BONOBO_CONF=yes
AC_ARG_ENABLE(bonobo-conf,[ --disable-bonobo-conf Disable bonobo-conf support in the capplets],[
PKG_BONOBO_CHECK=
PKG_BONOBO_CONF_CHECK=
bonobo_conf_enable=
libcommon_enable=
LIBCOMMON_DIR=
moniker_enable=
],[
CC_USE_BONOBO_CONF=no
])
if test "x$CC_USE_BONOBO_CONF" = "xyes"; then
PKG_BONOBO_CHECK="bonobo bonobox"
PKG_BONOBO_CONF_CHECK="bonobo bonobo_conf >= 0.9"
bonobo_conf_enable=yes
@ -109,7 +109,14 @@ libcommon_enable=yes
LIBCOMMON_DIR=common
moniker_enable=yes
AC_DEFINE(HAVE_BONOBO)
])
else
PKG_BONOBO_CHECK=
PKG_BONOBO_CONF_CHECK=
bonobo_conf_enable=
libcommon_enable=
LIBCOMMON_DIR=
moniker_enable=
fi
AC_SUBST(LIBCOMMON_DIR)