blob: 7fc74031400eba1d7c1bb26b5e804e3201c9800e [file] [log] [blame]
Daniel Veillard4151acb2001-06-22 10:48:57 +00001#ifndef __LIBXML_WIN32_CONFIG__
2#define __LIBXML_WIN32_CONFIG__
3
Owen Taylor3473f882001-02-23 17:55:21 +00004#define HAVE_CTYPE_H
Daniel Veillardf216d462002-02-08 13:44:24 +00005#define HAVE_STDARG_H
Owen Taylor3473f882001-02-23 17:55:21 +00006#define HAVE_MALLOC_H
Igor Zlatkovicddce4422002-09-29 17:51:32 +00007#define HAVE_ERRNO_H
Eric Zurcher7d508fe2013-12-18 16:47:56 +11008#define SEND_ARG2_CAST
9#define GETHOSTBYNAME_ARG_CAST
Igor Zlatkovicddce4422002-09-29 17:51:32 +000010
Daniel Veillard509ed2a2007-04-18 07:51:50 +000011#if defined(_WIN32_WCE)
Igor Zlatkovicddce4422002-09-29 17:51:32 +000012#undef HAVE_ERRNO_H
Igor Zlatkovicddce4422002-09-29 17:51:32 +000013#include "wincecompat.h"
14#else
15#define HAVE_SYS_STAT_H
Igor Zlatkovicddce4422002-09-29 17:51:32 +000016#define HAVE_STAT
17#define HAVE_STDLIB_H
Owen Taylor3473f882001-02-23 17:55:21 +000018#define HAVE_TIME_H
19#define HAVE_FCNTL_H
Owen Taylor3473f882001-02-23 17:55:21 +000020#include <io.h>
Igor Zlatkovicddce4422002-09-29 17:51:32 +000021#include <direct.h>
Igor Zlatkovic648b8e92002-04-17 18:35:57 +000022#endif
23
Igor Zlatkovic2103b052002-10-31 15:59:57 +000024#include <libxml/xmlversion.h>
Igor Zlatkovic648b8e92002-04-17 18:35:57 +000025
Rob Richardsa544c182008-03-10 15:26:27 +000026#ifndef ICONV_CONST
27#define ICONV_CONST const
28#endif
29
Daniel Veillard509ed2a2007-04-18 07:51:50 +000030/*
31 * Windows platforms may define except
32 */
33#undef except
34
Owen Taylor3473f882001-02-23 17:55:21 +000035#define HAVE_ISINF
36#define HAVE_ISNAN
Owen Taylor3473f882001-02-23 17:55:21 +000037#include <math.h>
Igor Zlatkovic72f92a82003-06-14 16:48:26 +000038#if defined(_MSC_VER) || defined(__BORLANDC__)
Daniel Veillard50f34372001-08-03 12:06:36 +000039/* MS C-runtime has functions which can be used in order to determine if
40 a given floating-point variable contains NaN, (+-)INF. These are
41 preferred, because floating-point technology is considered propriatary
42 by MS and we can assume that their functions know more about their
43 oddities than we do. */
44#include <float.h>
45/* Bjorn Reese figured a quite nice construct for isinf() using the _fpclass
46 function. */
47#ifndef isinf
48#define isinf(d) ((_fpclass(d) == _FPCLASS_PINF) ? 1 \
49 : ((_fpclass(d) == _FPCLASS_NINF) ? -1 : 0))
50#endif
51/* _isnan(x) returns nonzero if (x == NaN) and zero otherwise. */
52#ifndef isnan
53#define isnan(d) (_isnan(d))
54#endif
55#else /* _MSC_VER */
Igor Zlatkovic1932b6c2002-12-11 17:00:40 +000056#ifndef isinf
Owen Taylor3473f882001-02-23 17:55:21 +000057static int isinf (double d) {
58 int expon = 0;
59 double val = frexp (d, &expon);
60 if (expon == 1025) {
61 if (val == 0.5) {
62 return 1;
63 } else if (val == -0.5) {
64 return -1;
65 } else {
66 return 0;
67 }
68 } else {
69 return 0;
70 }
71}
Igor Zlatkovic1932b6c2002-12-11 17:00:40 +000072#endif
73#ifndef isnan
Owen Taylor3473f882001-02-23 17:55:21 +000074static int isnan (double d) {
75 int expon = 0;
76 double val = frexp (d, &expon);
77 if (expon == 1025) {
78 if (val == 0.5) {
79 return 0;
80 } else if (val == -0.5) {
81 return 0;
82 } else {
83 return 1;
84 }
85 } else {
86 return 0;
87 }
88}
Igor Zlatkovic1932b6c2002-12-11 17:00:40 +000089#endif
Daniel Veillard50f34372001-08-03 12:06:36 +000090#endif /* _MSC_VER */
Owen Taylor3473f882001-02-23 17:55:21 +000091
Daniel Veillard3d6aa102005-11-01 10:55:24 +000092#if defined(_MSC_VER)
Igor Zlatkovicb2f61632002-11-14 17:43:55 +000093#define mkdir(p,m) _mkdir(p)
Francis Dupont12fd6542014-10-13 15:09:43 +080094#if _MSC_VER < 1900
Daniel Veillard2d90de42001-04-16 17:46:18 +000095#define snprintf _snprintf
Francis Dupont12fd6542014-10-13 15:09:43 +080096#endif
Rob Richards82fbf572008-01-25 19:03:37 +000097#if _MSC_VER < 1500
Igor Zlatkovicb2f61632002-11-14 17:43:55 +000098#define vsnprintf(b,c,f,a) _vsnprintf(b,c,f,a)
Rob Richards82fbf572008-01-25 19:03:37 +000099#endif
Daniel Veillard3d6aa102005-11-01 10:55:24 +0000100#elif defined(__MINGW32__)
101#define mkdir(p,m) _mkdir(p)
Igor Zlatkovicb2f61632002-11-14 17:43:55 +0000102#endif
Owen Taylor3473f882001-02-23 17:55:21 +0000103
Igor Zlatkovic2103b052002-10-31 15:59:57 +0000104/* Threading API to use should be specified here for compatibility reasons.
105 This is however best specified on the compiler's command-line. */
106#if defined(LIBXML_THREAD_ENABLED)
Daniel Veillard509ed2a2007-04-18 07:51:50 +0000107#if !defined(HAVE_PTHREAD_H) && !defined(HAVE_WIN32_THREADS) && !defined(_WIN32_WCE)
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000108#define HAVE_WIN32_THREADS
Igor Zlatkovic2103b052002-10-31 15:59:57 +0000109#endif
110#endif
111
112/* Some third-party libraries far from our control assume the following
113 is defined, which it is not if we don't include windows.h. */
114#if !defined(FALSE)
115#define FALSE 0
116#endif
117#if !defined(TRUE)
118#define TRUE (!(FALSE))
119#endif
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000120
Daniel Veillard4151acb2001-06-22 10:48:57 +0000121#endif /* __LIBXML_WIN32_CONFIG__ */
122