aboutsummaryrefslogtreecommitdiffstats
path: root/security
diff options
context:
space:
mode:
authordima <dima@FreeBSD.org>1998-09-27 03:35:05 +0800
committerdima <dima@FreeBSD.org>1998-09-27 03:35:05 +0800
commit0418e4a89c56b7d684ffd05a76db0458f84808dc (patch)
treede80c3bf099eee88c4e3d8686c50bb23e7dee05c /security
parent1acdae059d62f89e5d690f2587a56f85bd329632 (diff)
downloadfreebsd-ports-gnome-0418e4a89c56b7d684ffd05a76db0458f84808dc.tar.gz
freebsd-ports-gnome-0418e4a89c56b7d684ffd05a76db0458f84808dc.tar.zst
freebsd-ports-gnome-0418e4a89c56b7d684ffd05a76db0458f84808dc.zip
Fix it for alpha.
Diffstat (limited to 'security')
-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)