meson: Build .rc file on Windows
[atk.git] / config.h.win32.in
blobd815b584e233eda83dcc36433a339c7ca5f567f7
1 /* config.h.win32.in Hand written to suit the MSVC/MinGW compilers  */
2 /* config.h.in.  Generated from configure.in by autoheader.  */
4 /* always defined to indicate that i18n is enabled */
5 #define ENABLE_NLS 1
7 /* Define the gettext package to be used */
8 #define GETTEXT_PACKAGE "@GETTEXT_PACKAGE@"
10 /* Define to 1 if you have the `bind_textdomain_codeset' function. */
11 #define HAVE_BIND_TEXTDOMAIN_CODESET 1
13 /* Define to 1 if you have the `dcgettext' function. */
14 #define HAVE_DCGETTEXT 1
16 /* Define to 1 if you have the <dlfcn.h> header file. */
17 /*#undef HAVE_DLFCN_H*/
19 /* Define if the GNU gettext() function is already present or preinstalled. */
20 #define HAVE_GETTEXT 1
22 /* Define to 1 if you have the <inttypes.h> header file. */
23 #ifndef _MSC_VER
24 #define HAVE_INTTYPES_H 1
25 #else
26 /* #undef HAVE_INTTYPES_H */
27 #endif
29 /* Define if your <locale.h> file defines LC_MESSAGES. */
30 /*#undef HAVE_LC_MESSAGES*/
32 /* Define to 1 if you have the <locale.h> header file. */
33 #define HAVE_LOCALE_H 1
35 /* Define to 1 if you have the <memory.h> header file. */
36 #define HAVE_MEMORY_H 1
38 /* Define to 1 if you have the <stdint.h> header file. */
39 #ifdef _MSC_VER
40 #if (_MSC_VER >= 1600)
41 #define HAVE_STDINT_H 1
42 #else
43 /* #undef HAVE_STDINT_H */
44 #endif
45 #else /*not MSVC*/
46 #define HAVE_STDINT_H 1
47 #endif
49 /* Define to 1 if you have the <stdlib.h> header file. */
50 #define HAVE_STDLIB_H 1
52 /* Define to 1 if you have the <strings.h> header file. */
53 /*#undef HAVE_STRINGS_H*/
55 /* Define to 1 if you have the <string.h> header file. */
56 #define HAVE_STRING_H 1
58 /* Define to 1 if you have the <sys/stat.h> header file. */
59 #define HAVE_SYS_STAT_H 1
61 /* Define to 1 if you have the <sys/types.h> header file. */
62 #define HAVE_SYS_TYPES_H 1
64 /* Define to 1 if you have the <unistd.h> header file. */
65 #ifndef _MSC_VER
66 #define HAVE_UNISTD_H 1
67 #else
68 /* #undef HAVE_UNISTD_H */
69 #endif
71 /* Define to the sub-directory in which libtool stores uninstalled libraries.
72    */
73 #define LT_OBJDIR ".libs/"
75 /* Name of package */
76 #define PACKAGE "ATK"
78 /* Define to the address where bug reports for this package should be sent. */
79 #define PACKAGE_BUGREPORT "http://bugzilla.gnome.org/enter_bug.cgi?product=atk"
81 /* Define to the full name of this package. */
82 #define PACKAGE_NAME "atk"
84 /* Define to the full name and version of this package. */
85 #define PACKAGE_STRING "atk @ATK_MAJOR_VERSION@.@ATK_MINOR_VERSION@.@ATK_MICRO_VERSION@"
87 /* Define to the one symbol short name of this package. */
88 #define PACKAGE_TARNAME "atk"
90 /* Define to the home page for this package. */
91 #define PACKAGE_URL "http://www.gtk.org/"
93 /* Define to the version of this package. */
94 #define PACKAGE_VERSION "@ATK_MAJOR_VERSION@.@ATK_MINOR_VERSION@.@ATK_MICRO_VERSION@"
96 /* Define to 1 if you have the ANSI C header files. */
97 #define STDC_HEADERS 1
99 /* Version number of package */
100 #define VERSION "@ATK_MAJOR_VERSION@.@ATK_MINOR_VERSION@.@ATK_MICRO_VERSION@"
102 /* defines how to decorate public symbols while building */
103 #ifdef _MSC_VER
104 #define _ATK_EXTERN __declspec (dllexport) extern
105 #else
106 #define _ATK_EXTERN __attribute__((visibility("default"))) __declspec (dllexport) extern
107 #endif