]> git.proxmox.com Git - qemu.git/commitdiff
ui/gtk: Support versions of VTE before 0.26
authorStefan Weil <sw@weilnetz.de>
Fri, 22 Feb 2013 19:09:59 +0000 (20:09 +0100)
committerAnthony Liguori <aliguori@us.ibm.com>
Fri, 22 Feb 2013 20:48:53 +0000 (14:48 -0600)
This is needed for current Debian stable (Squeeze).

VTE versions before 0.26 did not support VtePty.

Lower the version requirement and use alternate code which works for Debian.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Message-id: 1361560199-28906-1-git-send-email-sw@weilnetz.de
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
configure
ui/gtk.c

index 544c3f612cc132c785f95e648879fecd73579101..dcaa67c6d3093cafd5f5add9ee5a82c5e465908e 100755 (executable)
--- a/configure
+++ b/configure
@@ -1645,7 +1645,7 @@ fi
 
 if test "$gtk" != "no"; then
     if $pkg_config --exists 'gtk+-2.0 >= 2.18.0' && \
-       $pkg_config --exists 'vte >= 0.26.0'; then
+       $pkg_config --exists 'vte >= 0.24.0'; then
        gtk_cflags=`$pkg_config --cflags gtk+-2.0 2>/dev/null`
        gtk_libs=`$pkg_config --libs gtk+-2.0 2>/dev/null`
        vte_cflags=`$pkg_config --cflags vte 2>/dev/null`
index 008a6f8aef78d16c3950d36cc42be56680ea9b16..bc8bdfd6b286c9415057dfee316fc89d7567c368 100644 (file)
--- a/ui/gtk.c
+++ b/ui/gtk.c
@@ -868,7 +868,9 @@ static GSList *gd_vc_init(GtkDisplayState *s, VirtualConsole *vc, int index, GSL
     const char *label;
     char buffer[32];
     char path[32];
+#if VTE_CHECK_VERSION(0, 26, 0)
     VtePty *pty;
+#endif
     GIOChannel *chan;
     GtkWidget *scrolled_window;
     GtkAdjustment *vadjustment;
@@ -901,9 +903,12 @@ static GSList *gd_vc_init(GtkDisplayState *s, VirtualConsole *vc, int index, GSL
     cfmakeraw(&tty);
     tcsetattr(slave_fd, TCSAFLUSH, &tty);
 
+#if VTE_CHECK_VERSION(0, 26, 0)
     pty = vte_pty_new_foreign(master_fd, NULL);
-
     vte_terminal_set_pty_object(VTE_TERMINAL(vc->terminal), pty);
+#else
+    vte_terminal_set_pty(VTE_TERMINAL(vc->terminal), master_fd);
+#endif
 
     vte_terminal_set_scrollback_lines(VTE_TERMINAL(vc->terminal), -1);