mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00

Unless we are on Windows, the following POSIX headers are required. They're part of the earliest POSIX specs and it doesn't make sense to check for them. - fcntl.h - unistd.h - sys/stat.h - sys/time.h On Windows, io.h, fcntl.h and sys/stat.h are always available.
19 lines
377 B
C
19 lines
377 B
C
#ifndef __LIBXML_WIN32_CONFIG__
|
|
#define __LIBXML_WIN32_CONFIG__
|
|
|
|
#if defined(__MINGW32__) || (defined(_MSC_VER) && _MSC_VER >= 1600)
|
|
#define HAVE_STDINT_H
|
|
#endif
|
|
|
|
#if defined(_MSC_VER)
|
|
#if _MSC_VER < 1900
|
|
#define snprintf _snprintf
|
|
#endif
|
|
#if _MSC_VER < 1500
|
|
#define vsnprintf(b,c,f,a) _vsnprintf(b,c,f,a)
|
|
#endif
|
|
#endif
|
|
|
|
#endif /* __LIBXML_WIN32_CONFIG__ */
|
|
|