After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 397373 - crypto.c needs additional headers
crypto.c needs additional headers
Status: RESOLVED FIXED
Product: libxslt
Classification: Platform
Component: general
1.1.19
Other All
: Normal normal
: ---
Assigned To: Daniel Veillard
libxml QA maintainers
Depends on:
Blocks:
 
 
Reported: 2007-01-16 19:46 UTC by Roland Illig
Modified: 2007-01-17 13:21 UTC
See Also:
GNOME target: ---
GNOME version: Unversioned Enhancement



Description Roland Illig 2007-01-16 19:46:58 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
Comment 1 Daniel Veillard 2007-01-17 13:21:23 UTC
Okay makes, sense, applied I will commit to SVN soon,

  thanks,

Daniel