~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/md5/md5.cc

  • Committer: Brian Aker
  • Date: 2009-05-20 23:51:08 UTC
  • mfrom: (1022.2.18 mordred)
  • Revision ID: brian@gaz-20090520235108-nb5he1em112798pb
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
#include <drizzled/item/func.h>
19
19
#include <drizzled/function/str/strfunc.h>
20
20
 
21
 
#include <openssl/md5.h>
 
21
#if defined(HAVE_GNUTLS_OPENSSL)
 
22
# include <gnutls/openssl.h>
 
23
#else
 
24
# include <openssl/md5.h>
 
25
#endif /* HAVE_GNUTLS_OPENSSL */
22
26
 
23
27
#include <stdio.h>
24
28