Imported Upstream version 1.2.4
[platform/upstream/json-glib.git] / build / win32 / config.h.win32
1 /* config.h.in.  Generated from configure.ac by autoheader.  */
2
3 /* Define to 1 if translation of program messages to the user's native
4    language is requested. */
5 #define ENABLE_NLS 1
6
7 /* The prefix for our gettext translation domains. */
8 #define GETTEXT_PACKAGE "json-glib-1.0"
9
10 /* Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the
11    CoreFoundation framework. */
12 /* #undef HAVE_CFLOCALECOPYCURRENT */
13
14 /* Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in
15    the CoreFoundation framework. */
16 /* #undef HAVE_CFPREFERENCESCOPYAPPVALUE */
17
18 /* Define if the GNU dcgettext() function is already present or preinstalled.
19    */
20 #define HAVE_DCGETTEXT 1
21
22 /* Define to 1 if you have the <dlfcn.h> header file. */
23 /* #undef HAVE_DLFCN_H */
24
25 /* Whether you have gcov */
26 /* #undef HAVE_GCOV */
27
28 /* Define if the GNU gettext() function is already present or preinstalled. */
29 #define HAVE_GETTEXT 1
30
31 /* Define if you have the iconv() function and it works. */
32 #define HAVE_ICONV 1
33
34 /* Define to 1 if you have the <inttypes.h> header file. */
35 #if !defined (_MSC_VER) || (_MSC_VER >= 1800)
36 #define HAVE_INTTYPES_H 1
37 #endif
38
39 /* Define to 1 if you have the <memory.h> header file. */
40 #define HAVE_MEMORY_H 1
41
42 /* Define to 1 if you have the <stdint.h> header file. */
43 #if !defined (_MSC_VER) || (_MSC_VER >= 1600)
44 #define HAVE_STDINT_H 1
45 #endif
46
47 /* Define to 1 if you have the <stdlib.h> header file. */
48 #define HAVE_STDLIB_H 1
49
50 /* Define to 1 if you have the <strings.h> header file. */
51 /*#undef HAVE_STRINGS_H*/
52
53 /* Define to 1 if you have the <string.h> header file. */
54 #define HAVE_STRING_H 1
55
56 /* Define to 1 if you have the <sys/stat.h> header file. */
57 #define HAVE_SYS_STAT_H 1
58
59 /* Define to 1 if you have the <sys/types.h> header file. */
60 #define HAVE_SYS_TYPES_H 1
61
62 /* Define to 1 if you have the <unistd.h> header file. */
63 #ifndef _MSC_VER
64 #define HAVE_UNISTD_H 1
65 #endif
66
67 /* Define to the sub-directory in which libtool stores uninstalled libraries.
68    */
69 #define LT_OBJDIR ".libs/"
70
71 /* Define to 1 if your C compiler doesn't accept -c and -o together. */
72 /* #undef NO_MINUS_C_MINUS_O */
73
74 /* Define to the address where bug reports for this package should be sent. */
75 #define PACKAGE_BUGREPORT "http://bugzilla.gnome.org/enter_bug.cgi?product=json-glib"
76
77 /* Define to the full name of this package. */
78 #define PACKAGE_NAME "json-glib"
79
80 /* Define to the full name and version of this package. */
81 #define PACKAGE_STRING "json-glib 1.2.4"
82
83 /* Define to the one symbol short name of this package. */
84 #define PACKAGE_TARNAME "json-glib"
85
86 /* Define to the home page for this package. */
87 #define PACKAGE_URL ""
88
89 /* Define to the version of this package. */
90 #define PACKAGE_VERSION "1.2.4"
91
92 /* Define to 1 if you have the ANSI C header files. */
93 #define STDC_HEADERS 1
94
95 /* defines how to decorate public symbols while building */
96 #ifdef _MSC_VER
97 #define _JSON_EXTERN __declspec(dllexport) extern
98 #else
99 #define _JSON_EXTERN __attribute__((visibility("default"))) __declspec(dllexport) extern
100 #endif