mirror of
https://github.com/qpdf/qpdf.git
synced 2025-01-02 22:50:20 +00:00
fix MSVC 2010 issues
This commit is contained in:
parent
11314a9551
commit
92f0207de8
@ -1,5 +1,7 @@
|
|||||||
2011-12-28 Jay Berkenbilt <ejb@ql.org>
|
2011-12-28 Jay Berkenbilt <ejb@ql.org>
|
||||||
|
|
||||||
|
* include <stdint.h> if available to support MSVC 2010
|
||||||
|
|
||||||
* Since PCRE is not necessarily thread safe, don't declare any
|
* Since PCRE is not necessarily thread safe, don't declare any
|
||||||
PCRE objects to be static.
|
PCRE objects to be static.
|
||||||
|
|
||||||
|
@ -7,6 +7,9 @@
|
|||||||
#ifdef HAVE_INTTYPES_H
|
#ifdef HAVE_INTTYPES_H
|
||||||
# include <inttypes.h>
|
# include <inttypes.h>
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef HAVE_STDINT_H
|
||||||
|
# include <stdint.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
class MD5
|
class MD5
|
||||||
{
|
{
|
||||||
|
@ -5,6 +5,9 @@
|
|||||||
#ifdef HAVE_INTTYPES_H
|
#ifdef HAVE_INTTYPES_H
|
||||||
# include <inttypes.h>
|
# include <inttypes.h>
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef HAVE_STDINT_H
|
||||||
|
# include <stdint.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
int rijndaelSetupEncrypt(uint32_t *rk, const unsigned char *key,
|
int rijndaelSetupEncrypt(uint32_t *rk, const unsigned char *key,
|
||||||
int keybits);
|
int keybits);
|
||||||
|
Loading…
Reference in New Issue
Block a user