From dbabbeeccc0d4ee876a3310e9567695a115aca9e Mon Sep 17 00:00:00 2001 From: Howard Chu Date: Thu, 28 Oct 1999 07:24:39 +0000 Subject: [PATCH] Added macros for Mingw32 support. See README 1.27 log --- include/portable.h.in | 55 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/include/portable.h.in b/include/portable.h.in index 17ca011dd6..a6205bff4b 100644 --- a/include/portable.h.in +++ b/include/portable.h.in @@ -14,6 +14,34 @@ /* end of preamble */ +/* --------------------------------------------------- */ +/* begin of WINNT specific entries */ + +#ifdef WINNT + +/* don't suck in all of the win32 api */ +#define WIN32_LEAN_AND_MEAN + +/* WindowsNT specific features */ +#define HAVE_NT_SERVICE_MANAGER 1 +#define HAVE_NT_EVENT_LOG 1 + +#define MAXPATHLEN _MAX_PATH + +/* preprocess out undefined functions */ +#define LOG_DEBUG 0 +#define openlog(a, b) +#define closelog() + +/* define undefined types */ +#define ssize_t signed int +typedef char * caddr_t; + +#endif + +/* end of WINNT specific entries */ +/* --------------------------------------------------- */ + /* Define if on AIX 3. System headers sometimes define this. We just want to avoid a redefinition error message. */ @@ -276,6 +304,9 @@ /* Define if you have the snprintf function. */ #undef HAVE_SNPRINTF +/* Define to different name, if applicable */ +#undef snprintf + /* Define if you have the strdup function. */ #undef HAVE_STRDUP @@ -318,9 +349,15 @@ /* Define if you have the thr_yield function. */ #undef HAVE_THR_YIELD +/* Define if you have the _spawnlp function. */ +#undef HAVE_SPAWNLP + /* Define if you have the vsnprintf function. */ #undef HAVE_VSNPRINTF +/* Define to different name, if applicable */ +#undef vsnprintf + /* Define if you have the vsprintf function. */ #undef HAVE_VSPRINTF @@ -330,6 +367,9 @@ /* Define if you have the waitpid function. */ #undef HAVE_WAITPID +/* Define if you have the winsock support. */ +#undef HAVE_WINSOCK + /* Define if you have the write function. */ #undef HAVE_WRITE @@ -342,6 +382,9 @@ /* Define if you have the header file. */ #undef HAVE_ASSERT_H +/* Define if you have the header file. */ +#undef HAVE_CONIO_H + /* Define if you have the header file. */ #undef HAVE_CRYPT_H @@ -357,6 +400,9 @@ /* Define if you have the header file. */ #undef HAVE_DES_H +/* Define if you have the header file. */ +#undef HAVE_DIRECT_H + /* Define if you have the header file. */ #undef HAVE_DIRENT_H @@ -381,6 +427,9 @@ /* Define if you have the header file. */ #undef HAVE_GRP_H +/* Define if you have the header file. */ +#undef HAVE_IO_H + /* Define if you have the header file. */ #undef HAVE_KERBEROSIV_DES_H @@ -447,6 +496,9 @@ /* Define if you have the header file. */ #undef HAVE_PWD_H +/* Define if you have the header file. */ +#undef HAVE_PROCESS_H + /* Define if you have the header file. */ #undef HAVE_QUIPU_COMMONARG_H @@ -681,6 +733,9 @@ /* if you have LinuxThreads */ #undef HAVE_LINUX_THREADS +/* if you have NT threads */ +#undef HAVE_NT_THREADS + /* define if you have (or want) no threads */ #undef NO_THREADS -- 2.39.5