* ext/digest/md5/md5.h, ext/digest/rmd160/rmd160.h, ext/digest/rmd160/rmd160ossl.c, ext/digest/sha1/sha1.h, ext/digest/sha1/sha1ossl.c, ext/digest/sha2/sha2ossl.c, ext/digest/sha2/sha2.c: Work around a build problem with VC 2010. [Bug #3231] Index: ext/digest/bubblebabble/bubblebabble.c =================================================================== --- ext/digest/bubblebabble/bubblebabble.c (revision 28184) +++ ext/digest/bubblebabble/bubblebabble.c (working copy) @@ -12,7 +12,7 @@ ************************************************/ #include "ruby.h" -#include "digest.h" +#include "../digest.h" static ID id_digest; Index: ext/digest/md5/md5init.c =================================================================== --- ext/digest/md5/md5init.c (revision 28184) +++ ext/digest/md5/md5init.c (working copy) @@ -1,7 +1,7 @@ /* $RoughId: md5init.c,v 1.2 2001/07/13 19:49:10 knu Exp $ */ /* $Id$ */ -#include "digest.h" +#include "../digest.h" #if defined(HAVE_OPENSSL_MD5_H) #include "md5ossl.h" #else Index: ext/digest/md5/md5.h =================================================================== --- ext/digest/md5/md5.h (revision 28184) +++ ext/digest/md5/md5.h (working copy) @@ -46,7 +46,7 @@ #ifndef MD5_INCLUDED # define MD5_INCLUDED -#include "defs.h" +#include "../defs.h" /* * This code has some adaptations for the Ghostscript environment, but it Index: ext/digest/rmd160/rmd160.h =================================================================== --- ext/digest/rmd160/rmd160.h (revision 28184) +++ ext/digest/rmd160/rmd160.h (working copy) @@ -26,7 +26,7 @@ #ifndef _RMD160_H_ #define _RMD160_H_ -#include "defs.h" +#include "../defs.h" typedef struct { uint32_t state[5]; /* state (ABCDE) */ Index: ext/digest/rmd160/rmd160ossl.c =================================================================== --- ext/digest/rmd160/rmd160ossl.c (revision 28184) +++ ext/digest/rmd160/rmd160ossl.c (working copy) @@ -1,6 +1,6 @@ /* $Id$ */ -#include "defs.h" +#include "../defs.h" #include "rmd160ossl.h" void RMD160_Finish(RMD160_CTX *ctx, char *buf) { Index: ext/digest/rmd160/rmd160init.c =================================================================== --- ext/digest/rmd160/rmd160init.c (revision 28184) +++ ext/digest/rmd160/rmd160init.c (working copy) @@ -1,7 +1,7 @@ /* $RoughId: rmd160init.c,v 1.3 2001/07/13 20:00:43 knu Exp $ */ /* $Id$ */ -#include "digest.h" +#include "../digest.h" #if defined(HAVE_OPENSSL_RIPEMD_H) #include "rmd160ossl.h" #else Index: ext/digest/sha1/sha1init.c =================================================================== --- ext/digest/sha1/sha1init.c (revision 28184) +++ ext/digest/sha1/sha1init.c (working copy) @@ -1,7 +1,7 @@ /* $RoughId: sha1init.c,v 1.2 2001/07/13 19:49:10 knu Exp $ */ /* $Id$ */ -#include "digest.h" +#include "../digest.h" #if defined(HAVE_OPENSSL_SHA_H) #include "sha1ossl.h" #else Index: ext/digest/sha1/sha1.h =================================================================== --- ext/digest/sha1/sha1.h (revision 28184) +++ ext/digest/sha1/sha1.h (working copy) @@ -11,7 +11,7 @@ #ifndef _SYS_SHA1_H_ #define _SYS_SHA1_H_ -#include "defs.h" +#include "../defs.h" typedef struct { uint32_t state[5]; Index: ext/digest/sha1/sha1ossl.c =================================================================== --- ext/digest/sha1/sha1ossl.c (revision 28184) +++ ext/digest/sha1/sha1ossl.c (working copy) @@ -1,6 +1,6 @@ /* $Id$ */ -#include "defs.h" +#include "../defs.h" #include "sha1ossl.h" void Index: ext/digest/sha2/sha2ossl.c =================================================================== --- ext/digest/sha2/sha2ossl.c (revision 28184) +++ ext/digest/sha2/sha2ossl.c (working copy) @@ -1,4 +1,4 @@ -#include "defs.h" +#include "../defs.h" #include "sha2ossl.h" #define SHA_Finish(bit) \ Index: ext/digest/sha2/sha2init.c =================================================================== --- ext/digest/sha2/sha2init.c (revision 28184) +++ ext/digest/sha2/sha2init.c (working copy) @@ -1,7 +1,7 @@ /* $RoughId: sha2init.c,v 1.3 2001/07/13 20:00:43 knu Exp $ */ /* $Id$ */ -#include "digest.h" +#include "../digest.h" #if defined(SHA2_USE_OPENSSL) #include "sha2ossl.h" #else Index: ext/digest/sha2/sha2.c =================================================================== --- ext/digest/sha2/sha2.c (revision 28184) +++ ext/digest/sha2/sha2.c (working copy) @@ -34,7 +34,7 @@ * $Id$ */ -#include "defs.h" +#include "../defs.h" #include /* memcpy()/memset() or bcopy()/bzero() */ #include /* assert() */ #include "sha2.h"