[network-manager-openconnect] build: fix handling of GTK requirement if none was given
- From: Dan Williams <dcbw src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [network-manager-openconnect] build: fix handling of GTK requirement if none was given
- Date: Wed, 17 Aug 2011 21:37:20 +0000 (UTC)
commit 53e3f6e69d18d844536519f202c349664908e61d
Author: Dan Williams <dcbw redhat com>
Date: Wed Aug 17 16:37:28 2011 -0500
build: fix handling of GTK requirement if none was given
Previously the logic defaulted to requiring GTK3, but that broke
when doing 'make distcheck' if you didn't have GTK3. So if the
user didn't give a specific GTK version, just pick one
automatically.
configure.ac | 16 +++++++++++-----
1 files changed, 11 insertions(+), 5 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index e73af52..8f9043a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -66,13 +66,19 @@ AC_SUBST(DBUS_LIBS)
if test x"$with_gnome" != xno; then
AC_ARG_WITH([gtkver], AS_HELP_STRING([--with-gtkver], [The major version of GTK+ to build with]),
- with_gtkver="$withval",with_gtkver=3)
+ with_gtkver="$withval",with_gtkver=0)
+
+ gtk2_req=2.24
+ gtk3_req=2.91.4
case "${with_gtkver}" in
- 2) PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.24)
- gtkver=2
+ 0) PKG_CHECK_MODULES(GTK, gtk+-3.0 > $gtk3_req, ,
+ [PKG_CHECK_MODULES(GTK, gtk+-2.0 > $gtk2_req)])
+ ;;
+ 2) PKG_CHECK_MODULES(GTK, gtk+-2.0 >= $gtk2_req)
+ ;;
+ 3) PKG_CHECK_MODULES(GTK, gtk+-3.0 >= $gtk3_req)
;;
- *) PKG_CHECK_MODULES(GTK, gtk+-3.0 >= 2.91.4)
- gtkver=3
+ *) AC_MSG_ERROR(unknown GTK+ version $with_gtkver!)
;;
esac
AC_SUBST(GTK_CFLAGS)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]