summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJoerg Bruehe <joerg.bruehe@oracle.com>2012-01-19 17:05:47 +0100
committerJoerg Bruehe <joerg.bruehe@oracle.com>2012-01-19 17:05:47 +0100
commit3906b13fc362c74dfaae649ccc8f4b2cdecca35a (patch)
treea12b1f153b8c80567b7de7941f08c25d55efa728 /include
parent429fdb3b09b24d8277b1f20fe03546a2eb7a71d5 (diff)
downloadmariadb-git-3906b13fc362c74dfaae649ccc8f4b2cdecca35a.tar.gz
Compile fix needed for AIX,
to work around the lack of a bzero() prototype.
Diffstat (limited to 'include')
-rw-r--r--include/m_string.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/m_string.h b/include/m_string.h
index e1cf7651519..dc916792f60 100644
--- a/include/m_string.h
+++ b/include/m_string.h
@@ -60,7 +60,9 @@
# define bfill(A,B,C) memset((A),(C),(B))
#endif
-#if !defined(bzero) && (!defined(HAVE_BZERO) || !defined(HAVE_DECL_BZERO))
+#if !defined(bzero) && (!defined(HAVE_BZERO) || !HAVE_DECL_BZERO || defined(_AIX))
+/* See autoconf doku: "HAVE_DECL_symbol" will be defined after configure, to 0 or 1 */
+/* AIX has bzero() as a function, but the declaration prototype is strangely hidden */
# define bzero(A,B) memset((A),0,(B))
#endif