summaryrefslogtreecommitdiff
path: root/mysqlcppconn/config.h
blob: 19cf389d20a3dc27b8bcc12e080586b81684d248 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#include <sal/types.h>

#define HAVE_FUNCTION_STRTOL 1
#define HAVE_FUNCTION_STRTOUL 1
#define HAVE_FUNCTION_STRTOL 1
#define HAVE_FUNCTION_STRTOULL 1

#if defined(MACOSX) || defined(SOLARIS) || defined(LINUX)
    #define HAVE_STDINT_H
    #define HAVE_INTTYPES_H
#endif

#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif

#ifdef HAVE_INTTYPES_H
#include <inttypes.h>
#endif

#if !defined(HAVE_STDINT_H) && !defined(HAVE_INTTYPES_H)

// if we do not have the standard C99 integer types, then define them based on the respective SAL types
#if !defined(_SYS_TYPES_H)
typedef sal_Int8    int8_t;
typedef sal_Int16   int16_t;
typedef sal_Int32   int32_t;
#endif // !defined(_SYS_TYPES_H)
typedef sal_uInt8   uint8_t;
typedef sal_uInt16  uint16_t;
typedef sal_uInt32  uint32_t;
typedef sal_Int64   int64_t;
typedef sal_uInt64  uint64_t;
#endif // !defined(HAVE_STDINT_H) && !defined(HAVE_INTTYPES_H)
s='decoration'>Thorsten Wagner 2020-01-17Resolves: tdf#130045 dial control frame not hidden along with the controlCaolán McNamara 2019-11-05Position Dialog updateandreas kainz 2019-01-08Removed executable permission on data filesAndrea Gelmini 2019-01-06tdf#120195 tab focus removed Aditya 2018-05-29these spinbuttons should be focusableCaolán McNamara 2018-05-29weld SvxAngleTabPageCaolán McNamara 2018-04-02drop the spurious invisible_char[_set] propertiesCaolán McNamara 2018-03-05Resolves: tdf#116188 set min version on all .ui files to 3.18Caolán McNamara 2017-07-21migrate to boost::gettextCaolán McNamara 2016-09-28tdf#101549: Remove tooltip_markup from glade .ui filesMuhammet Kara 2014-11-03HIG fixes for the rest of cui (and a bit of sw)Adolfo Jayme Barrientos