summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2016-03-03 18:46:52 +0100
committerDave Airlie <airlied@redhat.com>2016-03-07 13:47:50 +1000
commit2f3e5622c2c416bbdb6b64a2642d65b77474cc3d (patch)
treee4f25ebc0bbbcb12fae734ffb638e642a43ed91d
parent3a585bd206ae84804e3f3e11d6cb796a7bc033a6 (diff)
build-sys: do not build tests on win32
They heavily rely on egl/linux currently Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
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