summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authormonty@mysql.com <>2005-04-29 17:03:34 +0300
committermonty@mysql.com <>2005-04-29 17:03:34 +0300
commitfbf31c4a8c68419c689c52c031a98275755a0961 (patch)
tree0caae1ad50324015508cbda7e4ef72f92ca69c25 /configure.in
parent948fce01b3ec235c2e8e3b40f660f327a836abe8 (diff)
downloadmariadb-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.in3
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
######################################################################