diff options
Diffstat (limited to 'net-p2p/qtella/files/patch-include::sha1.h')
-rw-r--r-- | net-p2p/qtella/files/patch-include::sha1.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/net-p2p/qtella/files/patch-include::sha1.h b/net-p2p/qtella/files/patch-include::sha1.h new file mode 100644 index 000000000000..4428aecbc433 --- /dev/null +++ b/net-p2p/qtella/files/patch-include::sha1.h @@ -0,0 +1,23 @@ +--- include/sha1.h.orig Wed Oct 2 08:27:57 2002 ++++ include/sha1.h Mon Jan 27 17:24:25 2003 +@@ -5,7 +5,7 @@ + extern "C" { + #endif + +-#include <stdint.h> ++#include <inttypes.h> + /* + * If you do not have the ISO standard stdint.h header file, then you + * must typdef the following: +@@ -27,6 +27,11 @@ + }; + #endif + #define SHA1HashSize 20 ++ ++#include <osreldate.h> ++#if __FreeBSD_version < 500000 ++typedef uint32_t int_least16_t; ++#endif + + /* + * This structure will hold context information for the SHA-1 |