[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 01/17] configure: drop vte-2.90 check
|
From: |
Paolo Bonzini |
|
Subject: |
[PATCH 01/17] configure: drop vte-2.90 check |
|
Date: |
Mon, 5 Jul 2021 18:00:02 +0200 |
All currently supported distros have vte 0.37 or newer, which is where the
ABI changed from 2.90 to 2.91. So drop support for the older ABI.
Suggested-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
configure | 14 ++++----------
1 file changed, 4 insertions(+), 10 deletions(-)
diff --git a/configure b/configure
index e799d908a3..27841f82ed 100755
--- a/configure
+++ b/configure
@@ -2803,19 +2803,13 @@ fi
# VTE probe
if test "$vte" != "no"; then
- vteminversion="0.32.0"
if $pkg_config --exists "vte-2.91"; then
- vtepackage="vte-2.91"
- else
- vtepackage="vte-2.90"
- fi
- if $pkg_config --exists "$vtepackage >= $vteminversion"; then
- vte_cflags=$($pkg_config --cflags $vtepackage)
- vte_libs=$($pkg_config --libs $vtepackage)
- vteversion=$($pkg_config --modversion $vtepackage)
+ vte_cflags=$($pkg_config --cflags vte-2.91)
+ vte_libs=$($pkg_config --libs vte-2.91)
+ vteversion=$($pkg_config --modversion vte-2.91)
vte="yes"
elif test "$vte" = "yes"; then
- feature_not_found "vte" "Install libvte-2.90/2.91 devel"
+ feature_not_found "vte" "Install libvte-2.91 devel"
else
vte="no"
fi
--
2.31.1
- [PATCH v2 00/17] convert more library and compiler checks to Meson, Paolo Bonzini, 2021/07/05
- [PATCH 01/17] configure: drop vte-2.90 check,
Paolo Bonzini <=
- [PATCH 06/17] configure, meson: convert liburing detection to meson, Paolo Bonzini, 2021/07/05
- [PATCH 08/17] meson: sort existing compiler tests, Paolo Bonzini, 2021/07/05
- [PATCH 04/17] configure, meson: convert libdaxctl detection to meson, Paolo Bonzini, 2021/07/05
- [PATCH 02/17] configure, meson: convert vte detection to meson, Paolo Bonzini, 2021/07/05
- [PATCH 07/17] configure, meson: convert libxml2 detection to meson, Paolo Bonzini, 2021/07/05
- [PATCH 03/17] configure, meson: convert virgl detection to meson, Paolo Bonzini, 2021/07/05
- [PATCH 15/17] configure: convert compiler tests to meson, part 4, Paolo Bonzini, 2021/07/05