bug 279165 - Fixes building libical on BeOS. patch by sergei_d, r=mostafah

This commit is contained in:
mattwillis%gmail.com 2006-08-02 04:42:33 +00:00
Родитель 2a0252993a
Коммит 2e5e7b5819
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -24,7 +24,7 @@
#define HAVE_SNPRINTF 1
/* Define to 1 if you have the <stdint.h> header file. */
#if !defined(XP_WIN32) && !defined(__sun) && !defined(BEOS)
#if !defined(XP_WIN32) && !defined(__sun) && !defined(XP_BEOS)
#define HAVE_STDINT_H 1
#endif

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

@ -139,7 +139,7 @@
#endif
#ifndef HAVE_INTPTR_T
#ifdef WIN32
#if defined (WIN32) || defined (XP_BEOS)
typedef long intptr_t;
#endif
#endif