Checking in a patch that lets us build on a redhat 6.0 box with glibc-2.1.2-3 installed. Thanks a lot to Brian Ryner (bryner@students.uiuc.edu) for the patch.

This commit is contained in:
nisheeth%netscape.com 1999-08-09 22:51:53 +00:00
Родитель 65ac5c1602
Коммит 06abea2aba
2 изменённых файлов: 10 добавлений и 2 удалений

Просмотреть файл

@ -60,7 +60,11 @@ particular environments. */
#define realloc(x, y) PR_Realloc((x), (y)) #define realloc(x, y) PR_Realloc((x), (y))
#define calloc(x, y) PR_Calloc((x),(y)) #define calloc(x, y) PR_Calloc((x),(y))
#define free(x) PR_Free(x) #define free(x) PR_Free(x)
#define int int32
#if PR_BYTES_PER_INT != 4
typedef PRInt32 int;
#endif
/* Enable Unicode string processing in expat */ /* Enable Unicode string processing in expat */
#define XML_UNICODE #define XML_UNICODE

Просмотреть файл

@ -60,7 +60,11 @@ particular environments. */
#define realloc(x, y) PR_Realloc((x), (y)) #define realloc(x, y) PR_Realloc((x), (y))
#define calloc(x, y) PR_Calloc((x),(y)) #define calloc(x, y) PR_Calloc((x),(y))
#define free(x) PR_Free(x) #define free(x) PR_Free(x)
#define int int32
#if PR_BYTES_PER_INT != 4
typedef PRInt32 int;
#endif
/* Enable Unicode string processing in expat */ /* Enable Unicode string processing in expat */
#define XML_UNICODE #define XML_UNICODE