diff options
author | monty@mysql.com <> | 2004-05-07 01:43:17 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2004-05-07 01:43:17 +0300 |
commit | 939ea71ecd2a8d8661b52660603cbd14c6773cb3 (patch) | |
tree | f2717f686b72c32ff82659eaf22da3a53b8deb1a /configure.in | |
parent | db127864f6456a8b781fc4dddb49e83f9661a19d (diff) | |
download | mariadb-git-939ea71ecd2a8d8661b52660603cbd14c6773cb3.tar.gz |
Portability fixes
Change strtoll -> my_strtoll10()
Fixed bug in my_strntoul() and my_strntol() where we got different values on 32 and 64 bit systems (Bug #3472)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in index c9738ed63a3..7d7c477e0f2 100644 --- a/configure.in +++ b/configure.in @@ -1851,7 +1851,8 @@ AC_CHECK_FUNCS(alarm bcmp bfill bmove bzero chsize cuserid fchmod fcntl \ # isinf() could be a function or a macro (HPUX) AC_MSG_CHECKING(for isinf with <math.h>) AC_TRY_LINK([#include <math.h>], [float f = 0.0; isinf(f)], - AC_MSG_RESULT(yes) AC_DEFINE(HAVE_ISINF,,[isinf() macro or function]), + AC_MSG_RESULT(yes) + AC_DEFINE(HAVE_ISINF,,[isinf() macro or function]), AC_MSG_RESULT(no)) CFLAGS="$ORG_CFLAGS" |