summaryrefslogtreecommitdiff
path: root/devel/tcl-trf/files/patch-intsize
diff options
context:
space:
mode:
authorErwin Lansing <erwin@FreeBSD.org>2009-06-13 19:22:49 +0000
committerErwin Lansing <erwin@FreeBSD.org>2009-06-13 19:22:49 +0000
commitadbca29e83b79341b9269d0e582619cea059db3a (patch)
tree251ccf3e545218797aa6a6f6fa2fc4d62eccd102 /devel/tcl-trf/files/patch-intsize
parentRemove devel/ruby-p4 as it has been marked BROKEN for over 6 months. (diff)
Remove devel/tcl-trf as it has been marked BORKEN for over 5 months.
Notes
Notes: svn path=/head/; revision=235726
Diffstat (limited to 'devel/tcl-trf/files/patch-intsize')
-rw-r--r--devel/tcl-trf/files/patch-intsize33
1 files changed, 0 insertions, 33 deletions
diff --git a/devel/tcl-trf/files/patch-intsize b/devel/tcl-trf/files/patch-intsize
deleted file mode 100644
index f95655d2aac7..000000000000
--- a/devel/tcl-trf/files/patch-intsize
+++ /dev/null
@@ -1,33 +0,0 @@
---- generic/haval.1996/haval.h Fri Jul 11 12:07:36 1997
-+++ generic/haval.1996/haval.h Sun Jul 11 13:43:41 2004
-@@ -47,9 +47,6 @@
- */
-
--#ifdef __alpha /* aku, Sep 23, 1996 */
--typedef unsigned int haval_word; /* a HAVAL word = 32 bits */
--#else
--typedef unsigned long int haval_word; /* a HAVAL word = 32 bits */
--#endif
-+#include <sys/types.h>
-+typedef uint32_t haval_word; /* a HAVAL word = 32 bits */
-
- typedef struct {
---- generic/ripemd/rmd128.h Mon May 19 16:53:18 1997
-+++ generic/ripemd/rmd128.h Sun Jul 11 13:48:54 2004
-@@ -33,12 +33,8 @@
- /* adapt these, if necessary,
- for your operating system and compiler */
-+#include <sys/types.h>
--typedef unsigned char byte; /* unsigned 8-bit type */
--typedef unsigned short word; /* unsigned 16-bit type */
--
--#ifdef __alpha
--typedef unsigned int dword; /* unsigned 32-bit integer (AXP) */
--#else
--typedef unsigned long dword; /* unsigned 32-bit type */
--#endif
-+typedef uint8_t byte; /* unsigned 8-bit type */
-+typedef uint16_t word; /* unsigned 16-bit type */
-+typedef uint32_t dword; /* unsigned 32-bit type */
-
- /********************************************************************/