-
Notifications
You must be signed in to change notification settings - Fork 6
/
meson-config.h.in
41 lines (33 loc) · 1.23 KB
/
meson-config.h.in
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
35
36
37
38
39
40
41
/* Enable compile-time and run-time bounds-checking, and some warnings. */
#if !defined _FORTIFY_SOURCE && defined __OPTIMIZE__ && __OPTIMIZE__
# define _FORTIFY_SOURCE 2
#endif
#if defined(__clang_major__) && defined(__clang_minor__)
# ifdef __apple_build_version__
# if __clang_major__ < 5 || (__clang_major__ == 5 && __clang_minor__ < 1)
# error You need at least XCode Clang v5.1 to compile QEMU
# endif
# else
# if __clang_major__ < 3 || (__clang_major__ == 3 && __clang_minor__ < 4)
# error You need at least Clang v3.4 to compile QEMU
# endif
# endif
#elif defined(__GNUC__) && defined(__GNUC_MINOR__)
# if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 8)
# error You need at least GCC v4.8 to compile QEMU
# endif
#else
# error You either need at least GCC 4.8 or Clang 3.4 or XCode Clang 5.1 to compile libvirt
#endif
/* Name of package */
#define PACKAGE "libvirt-glib"
/* GETTEXT package name */
#define GETTEXT_PACKAGE "libvirt-glib"
/* Enable GNU extensions */
#define _GNU_SOURCE
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "libvirt-glib-@VERSION@"
/* Define to the version of this package. */
#define PACKAGE_VERSION "@VERSION@"
/* Version number of package */
#define VERSION "@VERSION@"