Fix build on borland windows, by adding back typedef for pid_t.

This commit is contained in:
Bill Hoffman 2010-05-06 08:48:14 -04:00
parent 0ac7f85d20
commit aa1450bda1
1 changed files with 2 additions and 2 deletions

View File

@ -296,9 +296,9 @@ struct _timeval64i32 {
#define __timeval _timeval64i32 #define __timeval _timeval64i32
#endif #endif
#if defined(_MSC_VER) #if defined(_MSC_VER) || defined(__BORLANDC__)
typedef int pid_t; typedef int pid_t;
#endif // _MSC_VER #endif /* _MSC_VER __BORLANDC__ */
/* Message digest define */ /* Message digest define */
#if !defined(HAVE_OPENSSL_MD5_H) && !defined(HAVE_OPENSSL_SHA_H) #if !defined(HAVE_OPENSSL_MD5_H) && !defined(HAVE_OPENSSL_SHA_H)