From: Eric Anholt Date: Tue, 1 May 2018 19:20:11 +0000 (-0700) Subject: v3d: Enable the driver by default. X-Git-Tag: upstream/19.0.0~5078 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=795488d2bf4c7b500634d6928e96c4533e515cfe;p=platform%2Fupstream%2Fmesa.git v3d: Enable the driver by default. Now that we have a stabilized ABI and a fairly conformant driver, turn it on. --- diff --git a/configure.ac b/configure.ac index a73471b..3098015 100644 --- a/configure.ac +++ b/configure.ac @@ -2740,7 +2740,7 @@ if test -n "$with_gallium_drivers"; then PKG_CHECK_MODULES([V3D_SIMULATOR], [v3dv3], [USE_V3D_SIMULATOR=yes; DEFINES="$DEFINES -DUSE_V3D_SIMULATOR"], - [AC_MSG_ERROR([vc5 requires the simulator])]) + [USE_V3D_SIMULATOR=no]) ;; xpl111) HAVE_GALLIUM_PL111=yes diff --git a/src/gallium/drivers/v3d/meson.build b/src/gallium/drivers/v3d/meson.build index 3802151..18e68a6 100644 --- a/src/gallium/drivers/v3d/meson.build +++ b/src/gallium/drivers/v3d/meson.build @@ -53,7 +53,7 @@ files_per_version = files( ) v3dv3_c_args = [] -dep_v3dv3 = dependency('v3dv3') +dep_v3dv3 = dependency('v3dv3', required: false) if dep_v3dv3.found() v3dv3_c_args = '-DUSE_V3D_SIMULATOR' endif