qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [RfC PATCH] gtk: prefer version 3.x


From: Gerd Hoffmann
Subject: [Qemu-devel] [RfC PATCH] gtk: prefer version 3.x
Date: Thu, 7 Jul 2016 09:34:47 +0200

This patch flips the default from gtk2 to gtk3.

Sounds like a bigger change than it actually is as configure already
uses gtk3 in case it doesn't find gtk2.  So this changes behavior
only in case both gtk2 and gtk3 devel packages are installed.

Signed-off-by: Gerd Hoffmann <address@hidden>
---
 configure | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/configure b/configure
index e9090a0..e029eee 100755
--- a/configure
+++ b/configure
@@ -2154,11 +2154,9 @@ fi
 # GTK probe
 
 if test "$gtkabi" = ""; then
-    # The GTK ABI was not specified explicitly, so try whether 2.0 is 
available.
-    # Use 3.0 as a fallback if that is available.
-    if $pkg_config --exists "gtk+-2.0 >= 2.18.0"; then
-        gtkabi=2.0
-    elif $pkg_config --exists "gtk+-3.0 >= 3.0.0"; then
+    # The GTK ABI was not specified explicitly, so try whether 3.0 is 
available.
+    # Use 2.0 as a fallback.
+    if $pkg_config --exists "gtk+-3.0 >= 3.0.0"; then
         gtkabi=3.0
     else
         gtkabi=2.0
-- 
1.8.3.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]