Comment 2 for bug 1561091

Revision history for this message
Laurynas Biveinis (laurynas-biveinis) wrote :

The regressing upstream commit https://github.com/mysql/mysql-server/commit/5d467636d7a86a40ac5d7edef29144ac4067e48f replaced #ifdef HAVE_LIBNUMA checks with #if defined(HAVE_LIBNUMA) && defined(WITH_NUMA) ones.

Both symbols are defined by CMake, but WITH_NUMA is not passed to C++ preprocessor. It seems that config.h.cmake is missing

#cmakedefine WITH_NUMA 1

Tomislav, can you check whether that fixes it?