diff mbox

[libdrm,05/13] meson, configure: remove unused HAVE_TEGRA define

Message ID 20180126164552.5473-5-eric.engestrom@imgtec.com (mailing list archive)
State New, archived
Headers show

Commit Message

Eric Engestrom Jan. 26, 2018, 4:45 p.m. UTC
Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com>
---
 configure.ac | 3 ---
 meson.build  | 2 +-
 2 files changed, 1 insertion(+), 4 deletions(-)
diff mbox

Patch

diff --git a/configure.ac b/configure.ac
index 523ab4fc983c9c7ab737..8b3cd7cccb21989cc548 100644
--- a/configure.ac
+++ b/configure.ac
@@ -431,9 +431,6 @@  if test "x$AMDGPU" = xyes; then
 fi
 
 AM_CONDITIONAL(HAVE_TEGRA, [test "x$TEGRA" = xyes])
-if test "x$TEGRA" = xyes; then
-	AC_DEFINE(HAVE_TEGRA, 1, [Have Tegra support])
-fi
 
 AM_CONDITIONAL(HAVE_VC4, [test "x$VC4" = xyes])
 if test "x$VC4" = xyes; then
diff --git a/meson.build b/meson.build
index f81670aa10ce3981e3d3..94eb1c6a7ba9c0506493 100644
--- a/meson.build
+++ b/meson.build
@@ -254,7 +254,7 @@  endif
 foreach t : [[with_intel, 'INTEL'], [with_vmwgfx, 'VMWGFX'],
              [with_nouveau, 'NOUVEAU'],
              [with_exynos, 'EXYNOS'], [with_freedreno, 'FREEDRENO'],
-             [with_tegra, 'TEGRA'], [with_vc4, 'VC4'],
+             [with_vc4, 'VC4'],
              [with_etnaviv, 'ETNAVIV'], [with_radeon, 'RADEON']]
   if t[0]
     config.set10('HAVE_@0@'.format(t[1]), true)