1 --- a/src/win32_rasqal_config.h Fri Jun 27 04:02:09 2008
2 +++ b/src/win32_rasqal_config.h Thu Nov 6 12:07:06 2008
6 #define WIN32_LEAN_AND_MEAN 1
9 /* getopt is not in standard win32 C library - define if we have it */
10 /* #define HAVE_GETOPT_H 1 */
13 #define HAVE_STDLIB_H 1
15 +#define HAVE_ERRNO_H 1
17 #define HAVE_STRICMP 1
19 /* MS names for these functions */
20 -#define vsnprintf _vsnprintf
21 +// next line breaks build on wntmsci12
22 +//#define vsnprintf _vsnprintf
23 #define snprintf _snprintf
24 #define access _access
25 #define stricmp _stricmp
27 * Defines that come from config.h
35 /* #define RAPTOR_TRIPLES_SOURCE_REDLAND 1 */
37 /* Use PCRE regex library */
38 -#define RASQAL_REGEX_PCRE 1
39 +//#define RASQAL_REGEX_PCRE 1
41 +#define HAVE_LIBXML_SCHEMASINTERNALS_H 1
42 +#define HAVE_LIBXML_XMLSCHEMASTYPES_H 1
43 +#define HAVE_LIBXML_XMLSCHEMAS_H 1
45 +#define RASQAL_DECIMAL_NONE 1
46 +#define RASQAL_UUID_INTERNAL 1
47 +#define RASQAL_DIGEST_INTERNAL 1
50 #define RASQAL_DEBUG 1
52 --- a/src/rasqal_digest_md5.c 2013-04-01 00:18:47.913835564 +0200
53 +++ b/src/rasqal_digest_md5.c 2013-04-01 00:18:52.657835523 +0200
62 --- a/src/rasqal_digest_sha1.c 2013-04-01 00:19:04.655835420 +0200
63 +++ b/src/rasqal_digest_sha1.c 2013-04-01 00:19:10.448835370 +0200
71 #include "rasqal_internal.h"
72 --- a/src/rasqal_internal.h 2013-04-01 00:18:11.090835880 +0200
73 +++ b/src/rasqal_internal.h 2013-04-01 00:18:13.610835859 +0200
75 #ifndef RASQAL_INTERNAL_H
76 #define RASQAL_INTERNAL_H
78 +#if defined(_MSC_VER) && _MSC_VER < 1600
79 +typedef unsigned __int32 uint32_t;
80 +typedef __int16 int16_t;
87 #define RASQAL_EXTERN_C extern "C"