diff options
author | heinz <heinz@pkgsrc.org> | 2005-05-28 00:38:38 +0000 |
---|---|---|
committer | heinz <heinz@pkgsrc.org> | 2005-05-28 00:38:38 +0000 |
commit | 8c3058959838f982295d5027c1806d204d73ceaf (patch) | |
tree | e1f04eb702522be393299e73fbc5b754f2c78c92 /security | |
parent | 5b109a08615191608045356e4c4a896ed62d4067 (diff) | |
download | pkgsrc-8c3058959838f982295d5027c1806d204d73ceaf.tar.gz |
Fixed type error on Solaris (tested with Solaris 9).
Diffstat (limited to 'security')
-rw-r--r-- | security/p5-Crypt-IDEA/patches/patch-ac | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/security/p5-Crypt-IDEA/patches/patch-ac b/security/p5-Crypt-IDEA/patches/patch-ac new file mode 100644 index 00000000000..4a648718bf6 --- /dev/null +++ b/security/p5-Crypt-IDEA/patches/patch-ac @@ -0,0 +1,12 @@ +$NetBSD: patch-ac,v 1.1 2005/05/28 00:38:38 heinz Exp $ + +--- idea.h.orig Sat May 22 22:30:47 1999 ++++ idea.h +@@ -1,4 +1,7 @@ + #include <sys/types.h> ++#if defined(__sun) ++typedef uint16_t u_int16_t; ++#endif + + #define IDEA_KS_SIZE 104 + |