From: Emil Velikov <[email protected]> The HAVE_ANDROID conditional has been unused as of commit 51accecce77 ("mesa/dri: always link against shared glapi") and with that one gone we no longer need the host detection.
Cc: Chad Versace <[email protected]> Cc: Nicolas Boichat <[email protected]> Signed-off-by: Emil Velikov <[email protected]> --- configure.ac | 6 ------ 1 file changed, 6 deletions(-) diff --git a/configure.ac b/configure.ac index 2e4264cf592..d9d299ea5bf 100644 --- a/configure.ac +++ b/configure.ac @@ -267,11 +267,7 @@ _SAVE_CPPFLAGS="$CPPFLAGS" dnl Compiler macros DEFINES="-D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS" AC_SUBST([DEFINES]) -android=no case "$host_os" in -*-android*) - android=yes - ;; linux*|*-gnu*|gnu*|cygwin*) DEFINES="$DEFINES -D_GNU_SOURCE" ;; @@ -280,8 +276,6 @@ solaris*) ;; esac -AM_CONDITIONAL(HAVE_ANDROID, test "x$android" = xyes) - dnl Add flags for gcc and g++ if test "x$GCC" = xyes; then CFLAGS="$CFLAGS -Wall" -- 2.13.0 _______________________________________________ mesa-dev mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-dev
