summaryrefslogtreecommitdiff
path: root/net/DarwinStreamingServer
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2008-05-31 23:01:15 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2008-05-31 23:01:15 +0000
commita54fe1ca9c33931d7c4381a84ee11454f9831c08 (patch)
tree16cc7f849128603b27ba13f7bdb8ae11e1eadd30 /net/DarwinStreamingServer
parent- Update to 1.11.3 (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_5_EOL'.5-eol
Diffstat (limited to 'net/DarwinStreamingServer')
-rw-r--r--net/DarwinStreamingServer/files/patch-CommonUtilitiesLib::OSHeaders.h49
1 files changed, 0 insertions, 49 deletions
diff --git a/net/DarwinStreamingServer/files/patch-CommonUtilitiesLib::OSHeaders.h b/net/DarwinStreamingServer/files/patch-CommonUtilitiesLib::OSHeaders.h
deleted file mode 100644
index d26e6f2d9fa5..000000000000
--- a/net/DarwinStreamingServer/files/patch-CommonUtilitiesLib::OSHeaders.h
+++ /dev/null
@@ -1,49 +0,0 @@
---- CommonUtilitiesLib/OSHeaders.h.orig Wed May 18 17:01:14 2005
-+++ CommonUtilitiesLib/OSHeaders.h Sun Aug 13 00:34:52 2006
-@@ -27,11 +27,20 @@
- #define OSHeaders_H
- #include <limits.h>
-
-+#ifdef __amd64__
-+#define CPU_64BIT
-+#endif
-+
- #define kSInt16_Max USHRT_MAX
- #define kUInt16_Max USHRT_MAX
-
-+#ifdef CPU_64BIT
-+#define kSInt32_Max INT_MAX
-+#define kUInt32_Max UINT_MAX
-+#else
- #define kSInt32_Max LONG_MAX
- #define kUInt32_Max ULONG_MAX
-+#endif
-
- #define kSInt64_Max LONG_LONG_MAX
- #define kUInt64_Max ULONG_LONG_MAX
-@@ -72,8 +81,13 @@
- typedef signed char SInt8;
- typedef unsigned short UInt16;
- typedef signed short SInt16;
-+#ifdef CPU_64BIT
-+ typedef unsigned int UInt32;
-+ typedef signed int SInt32;
-+#else
- typedef unsigned long UInt32;
- typedef signed long SInt32;
-+#endif
- typedef signed long long SInt64;
- typedef unsigned long long UInt64;
- typedef float Float32;
-@@ -81,7 +95,11 @@
- typedef UInt16 Bool16;
- typedef UInt8 Bool8;
-
-+#ifdef CPU_64BIT
-+ typedef unsigned int FourCharCode;
-+#else
- typedef unsigned long FourCharCode;
-+#endif
- typedef FourCharCode OSType;
-
- #ifdef FOUR_CHARS_TO_INT