summaryrefslogtreecommitdiff
path: root/security/rsaref
diff options
context:
space:
mode:
authorDima Ruban <dima@FreeBSD.org>1998-09-26 19:35:05 +0000
committerDima Ruban <dima@FreeBSD.org>1998-09-26 19:35:05 +0000
commitbda0eafc55d6799daec0d1a2f7797c1833dd951a (patch)
tree2e704dc7a2ce64108e4d41c8a98773685c820507 /security/rsaref
parentUpdate for new perl5 (diff)
Fix it for alpha.
Notes
Notes: svn path=/head/; revision=13403
Diffstat (limited to 'security/rsaref')
-rw-r--r--security/rsaref/files/patch-ab22
1 files changed, 22 insertions, 0 deletions
diff --git a/security/rsaref/files/patch-ab b/security/rsaref/files/patch-ab
new file mode 100644
index 000000000000..b87826810f8b
--- /dev/null
+++ b/security/rsaref/files/patch-ab
@@ -0,0 +1,22 @@
+*** global.h.ORIG Sat Sep 26 12:26:48 1998
+--- global.h Sat Sep 26 12:27:44 1998
+***************
+*** 19,29 ****
+--- 19,35 ----
+ /* POINTER defines a generic pointer type */
+ typedef unsigned char *POINTER;
+
++ #if 0
+ /* UINT2 defines a two byte word */
+ typedef unsigned short int UINT2;
+
+ /* UINT4 defines a four byte word */
+ typedef unsigned long int UINT4;
++ #else
++ #include <machine/types.h>
++ typedef u_int16_t UINT2;
++ typedef u_int32_t UINT4;
++ #endif
+
+ #ifndef NULL_PTR
+ #define NULL_PTR ((POINTER)0)