summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Engestrom <eric.engestrom@imgtec.com>2018-01-26 16:10:04 +0000
committerEric Engestrom <eric.engestrom@imgtec.com>2018-01-29 15:41:52 +0000
commitde9be0bebf242a6ceb5ad41a714a9d0306c6f4f1 (patch)
tree403e3214f11adfded07a868ee0fd798d81aa5784
parentc56db628c77ecc734bfa00d773cc1717c8c1f825 (diff)
meson,configure: remove unused HAVE_OMAP 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 7f114a73..11e94e13 100644
--- a/configure.ac
+++ b/configure.ac
@@ -371,9 +371,6 @@ if test "x$NOUVEAU" = xyes; then
fi
AM_CONDITIONAL(HAVE_OMAP, [test "x$OMAP" = xyes])
-if test "x$OMAP" = xyes; then
- AC_DEFINE(HAVE_OMAP, 1, [Have OMAP support])
-fi
AM_CONDITIONAL(HAVE_EXYNOS, [test "x$EXYNOS" = xyes])
if test "x$EXYNOS" = xyes; then
diff --git a/meson.build b/meson.build
index 6bd528a6..4310bdf2 100644
--- a/meson.build
+++ b/meson.build
@@ -252,7 +252,7 @@ if cc.compiles('''int foo_hidden(void) __attribute__((visibility(("hidden"))));'
endif
foreach t : [[with_intel, 'INTEL'], [with_vmwgfx, 'VMWGFX'],
- [with_nouveau, 'NOUVEAU'], [with_omap, 'OMAP'],
+ [with_nouveau, 'NOUVEAU'],
[with_exynos, 'EXYNOS'], [with_freedreno, 'FREEDRENO'],
[with_tegra, 'TEGRA'], [with_vc4, 'VC4'],
[with_etnaviv, 'ETNAVIV'], [with_radeon, 'RADEON']]