diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2005-11-21 11:08:22 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2005-11-21 11:08:22 +0000 |
commit | 84e262de4aa1e3146833ea63ed36e5fafc2c578a (patch) | |
tree | 833412877701f61ffa20c237d7aaaac032442851 /libexslt | |
parent | 35e40429aa30121c7f5fb770f0d94a7e651eb4ee (diff) | |
download | libxslt-84e262de4aa1e3146833ea63ed36e5fafc2c578a.tar.gz libxslt-84e262de4aa1e3146833ea63ed36e5fafc2c578a.tar.bz2 libxslt-84e262de4aa1e3146833ea63ed36e5fafc2c578a.zip |
patch from Albert Chin needed for HP-UX which doesn't have <sys/select.h>
* libexslt/crypto.c: patch from Albert Chin needed for HP-UX
which doesn't have <sys/select.h>
Daniel
Diffstat (limited to 'libexslt')
-rw-r--r-- | libexslt/crypto.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libexslt/crypto.c b/libexslt/crypto.c index 51801013..aac601c6 100644 --- a/libexslt/crypto.c +++ b/libexslt/crypto.c @@ -317,7 +317,9 @@ exsltCryptoCryptoApiRc4Decrypt (xmlXPathParserContextPtr ctxt, #define PLATFORM_MD5 GCRY_MD_MD5 #define PLATFORM_SHA1 GCRY_MD_SHA1 +#ifdef HAVE_SYS_SELECT_H #include <sys/select.h> /* needed by gcrypt.h 4 Jul 04 */ +#endif #include <gcrypt.h> static void |