diff options
| author | Gerd Hoffmann <kraxel@redhat.com> | 2017-03-21 08:04:48 +0100 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2017-03-21 10:25:01 +0000 |
| commit | cc720a5dc4d096206d30f7724fc9dc5c8af4593b (patch) | |
| tree | 169b5497407e360a7aaae5e6b150a35fe902132e /configure | |
| parent | 940a8ce075e3408742a4edcabfd6c2a15e2539eb (diff) | |
| download | focaccia-qemu-cc720a5dc4d096206d30f7724fc9dc5c8af4593b.tar.gz focaccia-qemu-cc720a5dc4d096206d30f7724fc9dc5c8af4593b.zip | |
add opengl_cflags to QEMU_CFLAGS
... and drop OPENGL_CFLAGS from Makefiles. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Message-id: 1490079888-29029-1-git-send-email-kraxel@redhat.com Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'configure')
| -rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure index 1e0d7a8253..02e3b695d3 100755 --- a/configure +++ b/configure @@ -3449,6 +3449,7 @@ if test "$opengl" != "no" ; then if test "$gtk" = "yes" && $pkg_config --exists "$gtkpackage >= 3.16"; then gtk_gl="yes" fi + QEMU_CFLAGS="$QEMU_CFLAGS $opengl_cflags" else if test "$opengl" = "yes" ; then feature_not_found "opengl" "Please install opengl (mesa) devel pkgs: $opengl_pkgs" @@ -5503,7 +5504,6 @@ fi if test "$opengl" = "yes" ; then echo "CONFIG_OPENGL=y" >> $config_host_mak - echo "OPENGL_CFLAGS=$opengl_cflags" >> $config_host_mak echo "OPENGL_LIBS=$opengl_libs" >> $config_host_mak if test "$opengl_dmabuf" = "yes" ; then echo "CONFIG_OPENGL_DMABUF=y" >> $config_host_mak |