diff options
author | monty@mysql.com <> | 2005-04-29 17:03:34 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2005-04-29 17:03:34 +0300 |
commit | fbf31c4a8c68419c689c52c031a98275755a0961 (patch) | |
tree | 0caae1ad50324015508cbda7e4ef72f92ca69c25 /configure.in | |
parent | 948fce01b3ec235c2e8e3b40f660f327a836abe8 (diff) | |
download | mariadb-git-fbf31c4a8c68419c689c52c031a98275755a0961.tar.gz |
CAST(string_argument AS UNSIGNED) didn't work for big integers above the signed range. (Bug #7036)
Produce warnings of wrong cast of strings to signed/unsigned.
Don't block not resolved IP's if DNS server is down (Bug #8467)
Fix compiler problems with MinGW (Bug #8872)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.in b/configure.in index e90bea90dad..6efdc56d450 100644 --- a/configure.in +++ b/configure.in @@ -1860,6 +1860,9 @@ If you are using gcc 2.8.# you should upgrade to egcs 1.0.3 or newer and try again]); fi fi +AC_CHECK_TYPES([sigset_t, off_t], [], [], [#include <sys/types.h>]) +AC_CHECK_TYPES([size_t], [], [], [#include <stdio.h>]) + MYSQL_PTHREAD_YIELD ###################################################################### |