From 1d0f70c2f894b27e98773a282871d32802f67964 Mon Sep 17 00:00:00 2001 From: Michael Widenius Date: Wed, 1 Aug 2012 17:27:34 +0300 Subject: Temporary commit of merge of MariaDB 10.0-base and MySQL 5.6 --- mysys/md5.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'mysys/md5.c') diff --git a/mysys/md5.c b/mysys/md5.c index 22a5e409a09..b3b0a470369 100644 --- a/mysys/md5.c +++ b/mysys/md5.c @@ -38,13 +38,15 @@ copyright in any changes I have made; this code remains in the public domain. */ +/* + Skip entirely if built with OpenSSL/YaSSL support. +*/ +#if !defined(HAVE_OPENSSL) && !defined(HAVE_YASSL) + #include #include #include "my_md5.h" -#include /* for memcpy() and memset() */ - - static void my_MD5Transform (cvs_uint32 buf[4], const unsigned char in[64]); @@ -323,3 +325,5 @@ main (int argc, char **argv) return 0; } #endif /* TEST */ + +#endif /* !defined(HAVE_OPENSSL) && !defined(HAVE_YASSL) */ -- cgit v1.2.1