~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/auth_ldap/auth_ldap.cc

  • Committer: Henrik Ingo
  • Date: 2011-12-08 13:28:16 UTC
  • mto: This revision was merged to the branch mainline in revision 2469.
  • Revision ID: henrik.ingo@avoinelama.fi-20111208132816-pjaoo0xqypwcwbxi
Fix old DRIZZLE_PLUGIN macro and plugin.ini that both were giving
build errors.

Show diffs side-by-side

added added

removed removed

Lines of Context:
451
451
 
452
452
} /* namespace auth_ldap */
453
453
 
454
 
DRIZZLE_PLUGIN(auth_ldap::init, NULL, auth_ldap::init_options);
 
454
DRIZZLE_DECLARE_PLUGIN
 
455
{
 
456
  DRIZZLE_VERSION_ID,
 
457
  "auth_ldap",
 
458
  "0.2",
 
459
  "Eric Day, Henrik Ingo, Edward Konetzko",
 
460
  "LDAP based authenication.",
 
461
  PLUGIN_LICENSE_GPL,
 
462
  auth_ldap::init, /* Plugin Init */
 
463
  NULL,   /* depends */
 
464
  auth_ldap::init_options    /* config options */
 
465
}
 
466
DRIZZLE_DECLARE_PLUGIN_END;
 
467