diff options
author | Sergey Vojtovich <svoj@mariadb.org> | 2018-05-25 22:09:07 +0400 |
---|---|---|
committer | Sergey Vojtovich <svoj@mariadb.org> | 2018-05-26 13:17:22 +0400 |
commit | bc469a0bdf85400f7a63834f5b7af1a513dcdec9 (patch) | |
tree | cc68b2d951347b243f988962b948e5a81a2ef395 /config.h.cmake | |
parent | 3bbc30c73b3db740391848ee0ac7e64d5d1d1c8c (diff) | |
download | mariadb-git-bc469a0bdf85400f7a63834f5b7af1a513dcdec9.tar.gz |
Cleanup isinf() portability checks
Original problem reported by Wlad: re-compilation of 10.3 on top of 10.2
build would cache undefined HAVE_ISINF from 10.2, whereas it is expected
to be 1 in 10.3.
std::isinf() seem to be available on all supported platforms.
Diffstat (limited to 'config.h.cmake')
-rw-r--r-- | config.h.cmake | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/config.h.cmake b/config.h.cmake index 853dd3270c2..1a86844ea9b 100644 --- a/config.h.cmake +++ b/config.h.cmake @@ -162,7 +162,6 @@ #cmakedefine HAVE_IN_ADDR_T 1 #cmakedefine HAVE_INITGROUPS 1 #cmakedefine HAVE_ISNAN 1 -#cmakedefine HAVE_ISINF 1 #cmakedefine HAVE_LARGE_PAGE_OPTION 1 #cmakedefine HAVE_LDIV 1 #cmakedefine HAVE_LRAND48 1 |