diff --git a/ChangeLog b/ChangeLog index 81e3ee02..7ba8d284 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2011-12-28 Jay Berkenbilt + * include if available to support MSVC 2010 + * Since PCRE is not necessarily thread safe, don't declare any PCRE objects to be static. diff --git a/libqpdf/qpdf/MD5.hh b/libqpdf/qpdf/MD5.hh index ebdd118d..ef454def 100644 --- a/libqpdf/qpdf/MD5.hh +++ b/libqpdf/qpdf/MD5.hh @@ -7,6 +7,9 @@ #ifdef HAVE_INTTYPES_H # include #endif +#ifdef HAVE_STDINT_H +# include +#endif class MD5 { diff --git a/libqpdf/qpdf/rijndael.h b/libqpdf/qpdf/rijndael.h index 22037e1e..a9cd71da 100644 --- a/libqpdf/qpdf/rijndael.h +++ b/libqpdf/qpdf/rijndael.h @@ -5,6 +5,9 @@ #ifdef HAVE_INTTYPES_H # include #endif +#ifdef HAVE_STDINT_H +# include +#endif int rijndaelSetupEncrypt(uint32_t *rk, const unsigned char *key, int keybits);