~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/console/console.cc

Remove PLUGIN and MODULES.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
   along with this program; if not, write to the Free Software
14
14
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
15
15
 
16
 
#include <drizzled/server_includes.h>
 
16
#include "config.h"
17
17
#include <drizzled/gettext.h>
18
18
#include <drizzled/plugin/listen_tcp.h>
19
19
#include <drizzled/plugin/client.h>
324
324
static DRIZZLE_SYSVAR_BOOL(debug, debug_enabled, PLUGIN_VAR_NOCMDARG,
325
325
                           N_("Turn on extra debugging."), NULL, NULL, false);
326
326
 
327
 
static struct st_mysql_sys_var* vars[]= {
 
327
static drizzle_sys_var* vars[]= {
328
328
  DRIZZLE_SYSVAR(enable),
329
329
  DRIZZLE_SYSVAR(debug),
330
330
  NULL
331
331
};
332
332
 
333
 
drizzle_declare_plugin
 
333
DRIZZLE_DECLARE_PLUGIN
334
334
{
 
335
  DRIZZLE_VERSION_ID,
335
336
  "console",
336
337
  "0.1",
337
338
  "Eric Day",
343
344
  vars,   /* system variables */
344
345
  NULL    /* config options */
345
346
}
346
 
drizzle_declare_plugin_end;
 
347
DRIZZLE_DECLARE_PLUGIN_END;