Comment 15 for bug 1561091

Revision history for this message
igroene (igroene) wrote :

is it possible the Centos 5 build node doesn't contain the fix to config.h.cmake and buf0buf.cc from https://github.com/percona/percona-server/pull/483/files?

  config.h.cmake
 @@ -435,6 +435,7 @@
  #cmakedefine DEFAULT_SECURE_FILE_PRIV_DIR @DEFAULT_SECURE_FILE_PRIV_DIR@
  #cmakedefine DEFAULT_SECURE_FILE_PRIV_EMBEDDED_DIR @DEFAULT_SECURE_FILE_PRIV_EMBEDDED_DIR@
  #cmakedefine HAVE_LIBNUMA 1
 +#cmakedefine WITH_NUMA 1

  /* For default value of --early_plugin_load */
  #cmakedefine DEFAULT_EARLY_PLUGIN_LOAD @DEFAULT_EARLY_PLUGIN_LOAD@

 storage/innobase/buf/buf0buf.cc
 @@ -77,7 +77,7 @@ Created 11/5/1995 Heikki Tuuri
  #include <map>
  #include <sstream>

 -#if defined(HAVE_LIBNUMA) && defined(WITH_NUMA)
 +#if defined(HAVE_LIBNUMA) && defined(WITH_NUMA) && !defined(UNIV_INNOCHECKSUM)
  #include <numa.h>
  #include <numaif.h>