From 2f3e5622c2c416bbdb6b64a2642d65b77474cc3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Thu, 3 Mar 2016 18:46:52 +0100 Subject: [PATCH] build-sys: do not build tests on win32 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit They heavily rely on egl/linux currently Signed-off-by: Marc-André Lureau --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index a0b5da3..909b996 100644 --- a/configure.ac +++ b/configure.ac @@ -77,7 +77,7 @@ AC_ARG_ENABLE(tests, PKG_CHECK_MODULES(CHECK, [check >= 0.9.4], [HAVE_CHECK="yes"], [HAVE_CHECK="no"]) -if test "x$build_tests" = "xauto"; then +if test "x$build_tests" = "xauto" && test "x$os_win32" = "xno"; then build_tests="$HAVE_CHECK" fi if test "x$build_tests" = "xyes"; then