mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 08:46:40 +00:00
check: disable unit test support on win32 for now
Until we make the internal libcheck work on windows.
This commit is contained in:
parent
2d42fd4a2f
commit
06cc1d1d58
1 changed files with 7 additions and 2 deletions
|
@ -512,8 +512,13 @@ AC_ARG_ENABLE(check,
|
|||
no) BUILD_CHECK=no ;;
|
||||
*) AC_MSG_ERROR(bad value ${enableval} for --disable-check) ;;
|
||||
esac
|
||||
],
|
||||
[BUILD_CHECK=yes]) dnl Default value
|
||||
], [
|
||||
dnl Default value
|
||||
case $host_os in
|
||||
mingw* | msvc* | mks*) BUILD_CHECK=no ;;
|
||||
*) BUILD_CHECK=yes ;;
|
||||
esac
|
||||
])
|
||||
dnl bit of a misnomer, but keep the conditional named like this so we don't
|
||||
dnl have to change too much elsewhere
|
||||
AM_CONDITIONAL(HAVE_CHECK, test "x$BUILD_CHECK" = "xyes")
|
||||
|
|
Loading…
Reference in a new issue