Lines 1-5
Link Here
|
1 |
--- include/platform.h.orig Thu Mar 20 08:57:01 2003 |
1 |
--- include/platform.h.orig Mon Mar 31 09:57:04 2003 |
2 |
+++ include/platform.h Fri Mar 21 10:34:00 2003 |
2 |
+++ include/platform.h Mon Mar 31 21:23:33 2003 |
3 |
@@ -33,7 +33,7 @@ |
3 |
@@ -33,7 +33,7 @@ |
4 |
It enables tidy to find config files named ~/.tidyrc if |
4 |
It enables tidy to find config files named ~/.tidyrc if |
5 |
the HTML_TIDY environment variable is not set. |
5 |
the HTML_TIDY environment variable is not set. |
Lines 18-38
Link Here
|
18 |
|
18 |
|
19 |
|
19 |
|
20 |
/* Enable/disable support for Big5 and Shift_JIS character encodings */ |
20 |
/* Enable/disable support for Big5 and Shift_JIS character encodings */ |
21 |
@@ -443,16 +443,14 @@ |
|
|
22 |
/* hack for gnu sys/types.h file which defines uint and ulong */ |
23 |
/* you may need to delete the #ifndef and #endif on your system */ |
24 |
|
25 |
-#ifndef __USE_MISC |
26 |
#if defined(BE_OS) || defined(SOLARIS_OS) || defined(BSD_BASED_OS) || defined(MAC_OS_X) || defined(OSF_OS) || defined(IRIX_OS) || defined(AIX_OS) |
27 |
#include <sys/types.h> |
28 |
+typedef unsigned long ulong; |
29 |
#else |
30 |
#if !defined(HPUX_OS) && !defined(CYGWIN_OS) |
31 |
typedef unsigned int uint; |
32 |
#endif |
33 |
-typedef unsigned long ulong; |
34 |
#endif |
35 |
-#endif /* __USE_MISC */ |
36 |
|
37 |
#ifndef TIDY_EXPORT /* Define it away for most builds */ |
38 |
#define TIDY_EXPORT |