GNOME Bugzilla – Bug 397373
crypto.c needs additional headers
Last modified: 2007-01-17 13:21:23 UTC
Please describe the problem: DragonFly BSD needs the appended patch. Maybe Solaris, IRIX and HP-UX need it too. Steps to reproduce: Actual results: Expected results: Does this happen every time? Other information: --- libexslt/crypto.c.orig 2006-03-10 12:01:42.000000000 +0100 +++ libexslt/crypto.c @@ -317,6 +317,13 @@ exsltCryptoCryptoApiRc4Decrypt (xmlXPath #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
Okay makes, sense, applied I will commit to SVN soon, thanks, Daniel