From: Eric Engestrom Date: Fri, 26 Jan 2018 16:10:04 +0000 (+0000) Subject: meson,configure: remove unused HAVE_OMAP define X-Git-Tag: libdrm-2.4.90~33 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=de9be0bebf242a6ceb5ad41a714a9d0306c6f4f1;p=platform%2Fupstream%2Flibdrm.git meson,configure: remove unused HAVE_OMAP define Signed-off-by: Eric Engestrom Reviewed-by: Emil Velikov Reviewed-by: Dylan Baker --- diff --git a/configure.ac b/configure.ac index 7f114a7..11e94e1 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 6bd528a..4310bdf 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']]