~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/client.cc

Added code necessary for building plugins dynamically.
Merged in changes from lifeless to allow autoreconf to work.
Touching plugin.ini files now triggers a rebuid - so config/autorun.sh is no
longer required to be run after touching those.
Removed the duplicate plugin names - also removed the issue that getting them
different would silently fail weirdly later.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#include "config.h"
 
20
#include "drizzled/server_includes.h"
21
21
#include "drizzled/plugin/client.h"
22
22
 
23
23
using namespace std;
24
 
 
25
 
namespace drizzled
26
 
{
 
24
using namespace drizzled;
27
25
 
28
26
bool plugin::Client::store(const DRIZZLE_TIME *from)
29
27
{
79
77
    return store();
80
78
  return store(from, strlen(from));
81
79
}
82
 
 
83
 
 
84
 
} /* namespace drizzled */