More multibyte character support.
[openssl.git] / crypto / evp / m_ripemd.c
index c3d7492aab470c1c1ee40a5c4869f9179852c4ca..3d781a4e8df6dabea4dd1529e59981d39d8c7801 100644 (file)
  * [including the GNU Public Licence.]
  */
 
+#ifndef NO_RIPEMD
 #include <stdio.h>
 #include "cryptlib.h"
-#include "evp.h"
-#include "objects.h"
-#include "x509.h"
+#include <openssl/ripemd.h>
+#include <openssl/evp.h>
+#include <openssl/objects.h>
+#include <openssl/x509.h>
 
 static EVP_MD ripemd160_md=
        {
@@ -79,3 +81,4 @@ EVP_MD *EVP_ripemd160(void)
        {
        return(&ripemd160_md);
        }
+#endif