diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2007-01-17 14:40:20 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2007-01-17 14:40:20 +0000 |
commit | ba3e40899a0afef8161a0beb79211b346c65a1c6 (patch) | |
tree | 6993be5af838f226b54a51dd443395665625b64a /libexslt | |
parent | bb599795eb8e243eeaca603a6ea68932ca0998d5 (diff) | |
download | libxslt-ba3e40899a0afef8161a0beb79211b346c65a1c6.tar.gz libxslt-ba3e40899a0afef8161a0beb79211b346c65a1c6.tar.bz2 libxslt-ba3e40899a0afef8161a0beb79211b346c65a1c6.zip |
preparing release of 1.1.20 small patch for missing includes on some BSD,
* configure.in doc/*: preparing release of 1.1.20
* libexslt/crypto.c: small patch for missing includes on some BSD,
fixes #397373
* configure.in: replace == by = in test, raised by Roland Illig,
should fix #397371
Daniel
svn path=/trunk/; revision=1418
Diffstat (limited to 'libexslt')
-rw-r--r-- | libexslt/crypto.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libexslt/crypto.c b/libexslt/crypto.c index 26271478..cef80e82 100644 --- a/libexslt/crypto.c +++ b/libexslt/crypto.c @@ -317,6 +317,13 @@ exsltCryptoCryptoApiRc4Decrypt (xmlXPathParserContextPtr ctxt, #define PLATFORM_MD5 GCRY_MD_MD5 #define PLATFORM_SHA1 GCRY_MD_SHA1 +#ifdef HAVE_SYS_TYPES_H +# include <sys/types.h> +#endif +#ifdef HAVE_STDINT_H +# include <stdint.h> +#endif + #ifdef HAVE_SYS_SELECT_H #include <sys/select.h> /* needed by gcrypt.h 4 Jul 04 */ #endif |