Navigation Menu

Skip to content

Commit

Permalink
enable to build with mysql-5.5 (default).
Browse files Browse the repository at this point in the history
  • Loading branch information
ikdttr committed Nov 2, 2010
1 parent e45bf3a commit 2ee47e3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions ha_mroonga.cc
Expand Up @@ -23,8 +23,16 @@

#define MYSQL_SERVER 1

#ifdef MYSQL51
#include <mysql_priv.h>
#include <mysql/plugin.h>
#else /* MYSQL51 */
#include <sql_priv.h>
#include <sql_class.h>
#include <probes_mysql.h>
#include <sql_plugin.h>
#include <sql_show.h>
#endif
#include <sql_select.h>
#include <pthread.h>
#include <sys/types.h>
Expand Down

0 comments on commit 2ee47e3

Please sign in to comment.