diff options
author | monty@hundin.mysql.fi <> | 2001-08-21 20:06:00 +0300 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2001-08-21 20:06:00 +0300 |
commit | 063a1a6557ad2c501f4da9a47e633fb191ee2e00 (patch) | |
tree | cc0b5646a48d97a66571d12ba2d4c29f6c1059e5 /configure.in | |
parent | 301af97d4a1e09ce7da0d8ee63c13210a786891d (diff) | |
download | mariadb-git-063a1a6557ad2c501f4da9a47e633fb191ee2e00.tar.gz |
Portability fixes.
Patches required by Gemini
Fix to properly detect if there is an active transaction in InnoDB
Fix to not lock thread structure when doing automatic rollback when thread ends
Allow -O lower_case_names=0 on UNIX
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 87a144b4b57..f046251567a 100644 --- a/configure.in +++ b/configure.in @@ -1373,7 +1373,7 @@ AC_CHECK_FUNCS(alarm bmove \ getrusage getpwuid getcwd getrlimit getwd index stpcpy locking longjmp \ perror pread realpath readlink rename \ socket strnlen madvise mkstemp \ - strtol strtoul strtoull snprintf tempnam thr_setconcurrency \ + strtol strtoul strtoll strtoull snprintf tempnam thr_setconcurrency \ gethostbyaddr_r gethostbyname_r getpwnam \ bfill bzero bcmp strstr strpbrk strerror \ tell atod memcpy memmove \ @@ -1485,7 +1485,7 @@ AC_TRY_COMPILE( #include <netdb.h>], [int skr; - skr = gethostbyname_r((const char *) 0, (struct hostent*) 0, (hostent_data*) 0);], + skr = gethostbyname_r((const char *) 0, (struct hostent*) 0, (struct hostent_data*) 0);], mysql_cv_gethostname_arg=hostent_data, mysql_cv_gethostname_arg=char)) AC_LANG_RESTORE CXXFLAGS="$ac_save_CXXFLAGS" |