diff options
author | Tor Didriksen <tor.didriksen@oracle.com> | 2011-05-26 09:54:19 +0200 |
---|---|---|
committer | Tor Didriksen <tor.didriksen@oracle.com> | 2011-05-26 09:54:19 +0200 |
commit | c41e8663571973c316b40ee8ee974c22f014f32f (patch) | |
tree | bc763b7ac7a78cd18a1dfbe13c5b13e725a72b5b /cmake | |
parent | 876fd28402286a4273ffd441aef18166b998f06f (diff) | |
download | mariadb-git-c41e8663571973c316b40ee8ee974c22f014f32f.tar.gz |
Don't check for FIONREAD on windows.
Execution of platforms tests are slow/flaky when building on windows.
in PB:mysql-next-mr-opt-team on 2011-05-18 for win x86 debug_max, i see:
-- Looking for FIONREAD
-- Looking for FIONREAD - found
and the build fails.
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/os/WindowsCache.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmake/os/WindowsCache.cmake b/cmake/os/WindowsCache.cmake index 477fd1d2b88..68bbb337e15 100644 --- a/cmake/os/WindowsCache.cmake +++ b/cmake/os/WindowsCache.cmake @@ -341,6 +341,7 @@ SET(SIGNAL_RETURN_TYPE_IS_VOID 1 CACHE INTERNAL "") SET(C_HAS_inline CACHE INTERNAL "") SET(C_HAS___inline 1 CACHE INTERNAL "") SET(FIONREAD_IN_SYS_IOCTL CACHE INTERNAL "") +SET(FIONREAD_IN_SYS_FILIO CACHE INTERNAL "") SET(GWINSZ_IN_SYS_IOCTL CACHE INTERNAL "") SET(HAVE_CXXABI_H CACHE INTERNAL "") SET(HAVE_NDIR_H CACHE INTERNAL "") |