~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin.h

  • Committer: Brian Aker
  • Date: 2009-02-27 22:01:00 UTC
  • Revision ID: brian@tangent.org-20090227220100-qogl2mj41a5nmr0a
<Leithal> what do you guys think about supporting LGPL plugins?
<Leithal> http://bugs.mysql.com/bug.php?id=28017
<jaypipes> Leithal: no problem at all...
<krow> Leithal: Pushed in 3 minutes

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
  PLUGIN_LICENSE_PROPRIETARY,
61
61
  PLUGIN_LICENSE_GPL,
62
62
  PLUGIN_LICENSE_BSD,
63
 
  PLUGIN_LICENSE_MAX=PLUGIN_LICENSE_BSD
 
63
  PLUGIN_LICENSE_LGPL,
 
64
  PLUGIN_LICENSE_MAX=PLUGIN_LICENSE_LGPL
64
65
};
65
66
 
66
67
const char * const PLUGIN_LICENSE_PROPRIETARY_STRING="PROPRIETARY";
67
68
const char * const PLUGIN_LICENSE_GPL_STRING="GPL";
68
69
const char * const PLUGIN_LICENSE_BSD_STRING="BSD";
 
70
const char * const PLUGIN_LICENSE_LGPL_STRING="LGPL";
69
71
 
70
72
/*
71
73
  Macros for beginning and ending plugin declarations. Between