--- ./crypto/seed/seed_ecb.c.mingw-header-files 2007-04-24 01:50:10.000000000 +0200 +++ ./crypto/seed/seed_ecb.c 2009-02-02 18:28:55.000000000 +0100 @@ -49,7 +49,7 @@ * */ -#include +#include "seed.h" void SEED_ecb_encrypt(const unsigned char *in, unsigned char *out, const SEED_KEY_SCHEDULE *ks, int enc) { --- ./crypto/seed/seed_locl.h.mingw-header-files 2009-02-02 18:28:48.000000000 +0100 +++ ./crypto/seed/seed_locl.h 2009-02-02 18:28:55.000000000 +0100 @@ -27,7 +27,7 @@ #define HEADER_SEED_LOCL_H #include "openssl/e_os2.h" -#include +#include "seed.h" #ifdef SEED_LONG /* need 32-bit type */ --- ./crypto/seed/seed.c.mingw-header-files 2007-04-24 01:50:10.000000000 +0200 +++ ./crypto/seed/seed.c 2009-02-02 18:28:55.000000000 +0100 @@ -32,7 +32,7 @@ #include #endif -#include +#include "seed.h" #include "seed_locl.h" static seed_word SS[4][256] = { { --- ./crypto/camellia/cmll_cbc.c.mingw-header-files 2006-12-02 13:00:27.000000000 +0100 +++ ./crypto/camellia/cmll_cbc.c 2009-02-02 18:28:54.000000000 +0100 @@ -58,7 +58,7 @@ #include #include -#include +#include "camellia.h" #include "cmll_locl.h" void Camellia_cbc_encrypt(const unsigned char *in, unsigned char *out, --- ./crypto/camellia/cmll_cfb.c.mingw-header-files 2006-06-10 00:31:05.000000000 +0200 +++ ./crypto/camellia/cmll_cfb.c 2009-02-02 18:28:54.000000000 +0100 @@ -113,7 +113,7 @@ #include #include -#include +#include "camellia.h" #include "cmll_locl.h" #include "e_os.h" --- ./crypto/camellia/cmll_ofb.c.mingw-header-files 2006-06-10 00:31:05.000000000 +0200 +++ ./crypto/camellia/cmll_ofb.c 2009-02-02 18:28:55.000000000 +0100 @@ -111,7 +111,7 @@ # endif #endif #include -#include +#include "camellia.h" #include "cmll_locl.h" /* The input and output encrypted as though 128bit ofb mode is being --- ./crypto/camellia/cmll_misc.c.mingw-header-files 2009-02-02 18:29:19.000000000 +0100 +++ ./crypto/camellia/cmll_misc.c 2009-02-02 18:29:32.000000000 +0100 @@ -50,7 +50,7 @@ */ #include -#include +#include "camellia.h" #include "cmll_locl.h" #include #ifdef OPENSSL_FIPS --- ./crypto/camellia/cmll_ecb.c.mingw-header-files 2006-06-10 00:31:05.000000000 +0200 +++ ./crypto/camellia/cmll_ecb.c 2009-02-02 18:28:54.000000000 +0100 @@ -56,7 +56,7 @@ #endif #include -#include +#include "camellia.h" #include "cmll_locl.h" void Camellia_ecb_encrypt(const unsigned char *in, unsigned char *out, --- ./crypto/camellia/cmll_ctr.c.mingw-header-files 2006-06-10 00:31:05.000000000 +0200 +++ ./crypto/camellia/cmll_ctr.c 2009-02-02 18:28:54.000000000 +0100 @@ -56,7 +56,7 @@ #endif #include -#include +#include "camellia.h" #include "cmll_locl.h" /* NOTE: the IV/counter CTR mode is big-endian. The rest of the Camellia code --- ./crypto/evp/e_seed.c.mingw-header-files 2007-07-04 14:56:32.000000000 +0200 +++ ./crypto/evp/e_seed.c 2009-02-02 18:28:55.000000000 +0100 @@ -59,7 +59,7 @@ #include #include #ifndef OPENSSL_NO_SEED -#include +#include "../seed/seed.h" #include "evp_locl.h" static int seed_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, const unsigned char *iv, int enc); --- ./crypto/evp/e_camellia.c.mingw-header-files 2008-09-21 12:24:08.000000000 +0200 +++ ./crypto/evp/e_camellia.c 2009-02-02 18:28:55.000000000 +0100 @@ -59,7 +59,7 @@ #include #include #include -#include +#include "../camellia/camellia.h" #include "evp_locl.h" static int camellia_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, --- ./apps/speed.c.mingw-header-files 2009-01-07 11:48:22.000000000 +0100 +++ ./apps/speed.c 2009-02-02 18:28:54.000000000 +0100 @@ -165,7 +165,7 @@ #include #endif #ifndef OPENSSL_NO_CAMELLIA -#include +#include "../crypto/camellia/camellia.h" #endif #ifndef OPENSSL_NO_MD2 #include @@ -202,7 +202,7 @@ #include #endif #ifndef OPENSSL_NO_SEED -#include +#include "../crypto/seed/seed.h" #endif #ifndef OPENSSL_NO_BF #include