virt-viewer/config.h.in
Daniel P. Berrangé b2c072cf0b build: introduce meson build recipes
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
2021-01-25 16:02:48 +00:00

65 lines
1.6 KiB
C

/* Enable compile-time and run-time bounds-checking, and some warnings. */
#if !defined _FORTIFY_SOURCE && defined __OPTIMIZE__ && __OPTIMIZE__
# define _FORTIFY_SOURCE 2
#endif
/* Name of package */
#define PACKAGE "virt-viewer"
/* GETTEXT package name */
#define GETTEXT_PACKAGE "virt-viewer"
/* GLib logging domain */
#define G_LOG_DOMAIN "virt-viewer"
/* Enable GNU extensions */
#define _GNU_SOURCE
/* Build version details */
#define BUILDID "-@BUILDID@"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "virt-viewer @VERSION@"
/* Define to the version of this package. */
#define PACKAGE_VERSION "@VERSION@"
/* OS ID for this build */
#define REMOTE_VIEWER_OS_ID "@OS_ID@"
/* Version number of package */
#define VERSION "@VERSION@"
/* Have gtk-vnc? */
#mesondefine HAVE_GTK_VNC
/* Have libvirt? */
#mesondefine HAVE_LIBVIRT
/* Have libgovirt? */
#mesondefine HAVE_OVIRT
/* Define to 1 if you have the `ovirt_api_search_vms' function. */
#undef HAVE_OVIRT_API_SEARCH_VMS
/* Define to 1 if you have the `ovirt_cluster_get_data_center' function. */
#undef HAVE_OVIRT_CLUSTER_GET_DATA_CENTER
/* Have support for data center */
#undef HAVE_OVIRT_DATA_CENTER
/* Define to 1 if you have the `ovirt_host_get_cluster' function. */
#undef HAVE_OVIRT_HOST_GET_CLUSTER
/* Define to 1 if you have the `ovirt_storage_domain_get_disks' function. */
#undef HAVE_OVIRT_STORAGE_DOMAIN_GET_DISKS
/* Define to 1 if you have the `ovirt_vm_get_host' function. */
#undef HAVE_OVIRT_VM_GET_HOST
/* Have spice-gtk? */
#mesondefine HAVE_SPICE_GTK
/* Have vte? */
#mesondefine HAVE_VTE