bump product version to 4.1.6.2
[LibreOffice.git] / mysqlcppconn / config.h
blobe30a0cbc9248182c783c0cf1cae5c779207a0a4d
1 #include <sal/types.h>
3 #define HAVE_FUNCTION_STRTOL 1
4 #define HAVE_FUNCTION_STRTOUL 1
5 #define HAVE_FUNCTION_STRTOL 1
6 #define HAVE_FUNCTION_STRTOULL 1
8 #if defined(MACOSX) || defined(SOLARIS) || defined(LINUX) || (defined _MSC_VER && _MSC_VER >= 1600)
9 #define HAVE_STDINT_H
10 #ifndef _MSC_VER
11 #define HAVE_INTTYPES_H
12 #endif
13 #endif
15 #ifdef HAVE_STDINT_H
16 #include <stdint.h>
17 #endif
19 #ifdef HAVE_INTTYPES_H
20 #include <inttypes.h>
21 #endif
23 #if !defined(HAVE_STDINT_H) && !defined(HAVE_INTTYPES_H)
25 // if we do not have the standard C99 integer types, then define them based on the respective SAL types
26 #if !defined(_SYS_TYPES_H)
27 typedef sal_Int8 int8_t;
28 typedef sal_Int16 int16_t;
29 typedef sal_Int32 int32_t;
30 #endif // !defined(_SYS_TYPES_H)
31 typedef sal_uInt8 uint8_t;
32 typedef sal_uInt16 uint16_t;
33 typedef sal_uInt32 uint32_t;
34 typedef sal_Int64 int64_t;
35 typedef sal_uInt64 uint64_t;
36 #endif // !defined(HAVE_STDINT_H) && !defined(HAVE_INTTYPES_H)