Commit 089547f4 authored by unknown's avatar unknown

Bug#21855 Compilation error in ha_innodb.cc

 - Add ifdefs in ha_innodb.cc so it's only compiled if we have selected to build mysqld with innodb.
   This is inline with how it's done in other handlers.


sql/ha_innodb.cc:
  Add ifdef for WITH_INNOBASE_STORAGE_ENGINE around all code in ha_innodb.cc so it's only included if we have defined --with-innodb to configure
parent 0fbd2158
......@@ -32,6 +32,8 @@ have disables the InnoDB inlining in this file. */
#endif
#include "mysql_priv.h"
#ifdef WITH_INNOBASE_STORAGE_ENGINE
#include "slave.h"
#include <m_ctype.h>
......@@ -7622,3 +7624,4 @@ mysql_declare_plugin(innobase)
}
mysql_declare_plugin_end;
#endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment