~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/md5/md5.cc

  • Committer: Monty Taylor
  • Date: 2009-12-24 04:02:07 UTC
  • mto: This revision was merged to the branch mainline in revision 1253.
  • Revision ID: mordred@inaugust.com-20091224040207-1eht670lo66zbwuw
Fixed Solaris.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
16
16
 
17
17
#include "config.h"
 
18
 
 
19
/* Include these before the openssl headers, because they are BROKEN AS CRAP */
 
20
#include <cstdio>
 
21
#include <cstddef>
 
22
 
18
23
#if defined(HAVE_LIBGNUTLS_OPENSSL)
19
24
# include <gnutls/openssl.h>
20
25
#else
21
26
# include <openssl/md5.h>
22
27
#endif /* HAVE_GNUTLS_OPENSSL */
23
28
 
24
 
#include <cstdio>
25
 
 
26
29
#include <drizzled/plugin/function.h>
27
30
#include <drizzled/item/func.h>
28
31
#include "drizzled/charset.h"