diff options
author | Michael Okoko <okokomichaels@outlook.com> | 2021-03-26 20:48:59 +0100 |
---|---|---|
committer | Daniel Black <daniel@mariadb.org> | 2021-03-27 08:40:04 +1100 |
commit | 48141f3c1787de941d969ad1e6675611b2b650c2 (patch) | |
tree | bbe16ae19778a3ebf56d683ebf49c88845d45471 /config.h.cmake | |
parent | 36a05268e7059163752ab91d1cbe1180dbd90b93 (diff) | |
download | mariadb-git-48141f3c1787de941d969ad1e6675611b2b650c2.tar.gz |
Replace mallinfo with mallinfo2 on supported systems
`mallinfo` is deprecated since glibc 2.33 and has been replaced by mallinfo2.
The deprecation causes building the server to fail if glibc version is > 2.33.
Check if mallinfo2 exist on the system and use it instead.
Diffstat (limited to 'config.h.cmake')
-rw-r--r-- | config.h.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config.h.cmake b/config.h.cmake index 0e19dd44694..c74592b4a65 100644 --- a/config.h.cmake +++ b/config.h.cmake @@ -177,6 +177,7 @@ #cmakedefine HAVE_DECL_MADVISE 1 #cmakedefine HAVE_DECL_MHA_MAPSIZE_VA 1 #cmakedefine HAVE_MALLINFO 1 +#cmakedefine HAVE_MALLINFO2 1 #cmakedefine HAVE_MEMCPY 1 #cmakedefine HAVE_MEMMOVE 1 #cmakedefine HAVE_MKSTEMP 1 |