aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Engestrom2018-01-26 10:19:23 -0600
committerEric Engestrom2018-01-29 09:41:52 -0600
commit540827cc7da2228ae54947adcbf33555a48d0b1c (patch)
treefe30d15d4df47979fe66b32a280182a1b05ecf4d
parent2cd9105db60714c4c9f9e89625da920b4940455f (diff)
downloadexternal-libdrm-540827cc7da2228ae54947adcbf33555a48d0b1c.tar.gz
external-libdrm-540827cc7da2228ae54947adcbf33555a48d0b1c.tar.xz
external-libdrm-540827cc7da2228ae54947adcbf33555a48d0b1c.zip
meson,configure: remove unused HAVE_ETNAVIV define
Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com> Reviewed-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
-rw-r--r--configure.ac3
-rw-r--r--meson.build2
2 files changed, 1 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 83f2e4c2..6bb8d9f5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -431,9 +431,6 @@ if test "x$VC4" = xyes; then
431fi 431fi
432 432
433AM_CONDITIONAL(HAVE_ETNAVIV, [test "x$ETNAVIV" = xyes]) 433AM_CONDITIONAL(HAVE_ETNAVIV, [test "x$ETNAVIV" = xyes])
434if test "x$ETNAVIV" = xyes; then
435 AC_DEFINE(HAVE_ETNAVIV, 1, [Have etnaviv support])
436fi
437 434
438AM_CONDITIONAL(HAVE_INSTALL_TESTS, [test "x$INSTALL_TESTS" = xyes]) 435AM_CONDITIONAL(HAVE_INSTALL_TESTS, [test "x$INSTALL_TESTS" = xyes])
439 436
diff --git a/meson.build b/meson.build
index 049ef3c3..fa00254b 100644
--- a/meson.build
+++ b/meson.build
@@ -255,7 +255,7 @@ foreach t : [[with_intel, 'INTEL'], [with_vmwgfx, 'VMWGFX'],
255 [with_nouveau, 'NOUVEAU'], 255 [with_nouveau, 'NOUVEAU'],
256 [with_exynos, 'EXYNOS'], 256 [with_exynos, 'EXYNOS'],
257 [with_vc4, 'VC4'], 257 [with_vc4, 'VC4'],
258 [with_etnaviv, 'ETNAVIV'], [with_radeon, 'RADEON']] 258 [with_radeon, 'RADEON']]
259 if t[0] 259 if t[0]
260 config.set10('HAVE_@0@'.format(t[1]), true) 260 config.set10('HAVE_@0@'.format(t[1]), true)
261 endif 261 endif