diff options
author | unknown <monty@mashka.mysql.fi> | 2003-11-20 02:48:09 +0200 |
---|---|---|
committer | unknown <monty@mashka.mysql.fi> | 2003-11-20 02:48:09 +0200 |
commit | 46401ab3842d29281161ddb4204d2f2959b8fbc7 (patch) | |
tree | 0a61e2dc180694c077416cd962cb3c948144686d /include/my_sys.h | |
parent | 29b99eaa0d91952a69839027396f64058e885b58 (diff) | |
download | mariadb-git-46401ab3842d29281161ddb4204d2f2959b8fbc7.tar.gz |
Portability fixes for AIX43
include/my_base.h:
Portability fix
include/my_global.h:
Portability fix for AIX43
(Having _Export gave a lot of errors/warnings and I think this is not needed anymore)
include/my_sys.h:
Remove compiler warning on AIX43 with xlc_r compiler
include/mysql.h:
Portability fix
innobase/fil/fil0fil.c:
Fixed compiler warnings (xlc_r)
libmysql/libmysql.c:
Portability fix
strings/my_strtoll10.c:
Portability fix (for AIX43)
Diffstat (limited to 'include/my_sys.h')
-rw-r--r-- | include/my_sys.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/my_sys.h b/include/my_sys.h index 25c450e5d2b..bc43a59172e 100644 --- a/include/my_sys.h +++ b/include/my_sys.h @@ -160,7 +160,7 @@ extern char *my_strdup_with_length(const byte *from, uint length, #endif #ifdef HAVE_ALLOCA -#if defined(_AIX) && !defined(__GNUC__) +#if defined(_AIX) && !defined(__GNUC__) && !defined(_AIX43) #pragma alloca #endif /* _AIX */ #if defined(__GNUC__) && !defined(HAVE_ALLOCA_H) |