]> git.proxmox.com Git - qemu.git/commit
vl: fix build when configured with no graphic support
authorAntony Pavlov <antonynpavlov@gmail.com>
Tue, 29 Oct 2013 04:36:31 +0000 (08:36 +0400)
committerMichael Tokarev <mjt@tls.msk.ru>
Wed, 13 Nov 2013 11:48:38 +0000 (15:48 +0400)
commit8111d0287821a9b2a2faefbf0be1f345dbe93222
tree9e69dc6a4b411d925bdba99597be88f3eb1ea7c4
parentd9570cadd54115dd1b2bdff7d43c0d4f840e65e5
vl: fix build when configured with no graphic support

The following error occurs when building with no graphic output support:

  vl.c: In function ‘main’:
  vl.c:2829:19: error: variable ‘ds’ set but not used [-Werror=unused-but-set-variable]
       DisplayState *ds;
                     ^
  cc1: all warnings being treated as errors

To reproduce this issue, just run:

  $ ./configure \
      --disable-curses \
      --disable-sdl \
      --disable-cocoa \
      --disable-gtk \
      --disable-vnc \
      --enable-werror
  $ make vl.o

Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
Reviewed-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
vl.c