[balsa] More understandable output about html-widget
- From: Peter Bloomfield <PeterB src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [balsa] More understandable output about html-widget
- Date: Tue, 9 Feb 2010 12:51:00 +0000 (UTC)
commit 5e33c152956034fc18f41ab2228e59b62796e49b
Author: Peter Bloomfield <PeterBloomfield bellsouth net>
Date: Tue Feb 9 07:48:24 2010 -0500
More understandable output about html-widget
* configure.in: more understandable output from html-widget
configuration.
ChangeLog | 5 +++++
configure.in | 11 +++++++----
2 files changed, 12 insertions(+), 4 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 08cc1a2..6603d22 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2010-02-09 Albrecht DreÃ?
+
+ * configure.in: more understandable output from html-widget
+ configuration.
+
2010-02-05 Peter Bloomfield
* configure.in: use a case statement to configure html-widget.
diff --git a/configure.in b/configure.in
index 452d638..ca02ec6 100644
--- a/configure.in
+++ b/configure.in
@@ -365,14 +365,17 @@ AC_SUBST(BALSA_DEFS)
AC_MSG_CHECKING(whether to use an HTML widget)
case "$use_html_widget" in
gtkhtml2)
+ AC_MSG_RESULT([$use_html_widget])
PKG_CHECK_MODULES(HTML, [ libgtkhtml-2.0 ])
AC_DEFINE(HAVE_GTKHTML2,1,[Defined when GtkHtml-2 can be used.])
;;
gtkhtml3)
+ AC_MSG_RESULT([$use_html_widget])
PKG_CHECK_MODULES(HTML, [ libgtkhtml-3.14 ])
AC_DEFINE(HAVE_GTKHTML3,1,[Defined when GtkHtml-3 can be used.])
;;
webkit)
+ AC_MSG_RESULT([$use_html_widget])
if ! $PKG_CONFIG --atleast-version=1.1.14 webkit-1.0; then
AC_MSG_ERROR([WebKitGTK+ version 1.1.14 or newer is required.])
fi
@@ -382,12 +385,12 @@ case "$use_html_widget" in
PKG_CHECK_MODULES(HTML, [webkit-1.0])
AC_DEFINE(HAVE_WEBKIT,1,[Defined when WebKit can be used.])
;;
- no) ;;
- *) AC_MSG_ERROR([bad option]) ;;
+ no)
+ AC_MSG_RESULT([none])
+ ;;
+ *) AC_MSG_ERROR([bad option $use_html_widget]) ;;
esac
-AC_MSG_RESULT([$use_html_widget])
-
if test x"$use_html_widget" != xno ; then
AC_DEFINE(HAVE_HTML_WIDGET,1,[Defined when any HTML widget can be used.])
BALSA_CFLAGS="$BALSA_CFLAGS $HTML_CFLAGS"
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]