2020-08-03 09:45:08 +00:00
|
|
|
/*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library. If not, see
|
|
|
|
* <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-08-03 06:50:49 +00:00
|
|
|
#include <meson-config.h>
|
2020-06-17 19:41:28 +00:00
|
|
|
|
2020-07-24 14:35:03 +00:00
|
|
|
/* Enable compile-time and run-time bounds-checking, and some warnings,
|
|
|
|
* without upsetting newer glibc. */
|
|
|
|
|
|
|
|
#if !defined _FORTIFY_SOURCE && defined __OPTIMIZE__ && __OPTIMIZE__
|
|
|
|
# define _FORTIFY_SOURCE 2
|
|
|
|
#endif
|
|
|
|
|
2020-06-17 19:41:28 +00:00
|
|
|
/*
|
|
|
|
* Define __GNUC_PREREQ to a sane default if it isn't yet defined.
|
|
|
|
* This is done here so that it's included as early as possible;
|
|
|
|
*/
|
|
|
|
#ifndef __GNUC_PREREQ
|
|
|
|
# define __GNUC_PREREQ(maj, min) \
|
|
|
|
((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(__clang_major__) && defined(__clang_minor__)
|
|
|
|
# ifdef __apple_build_version__
|
2022-01-12 16:51:33 +00:00
|
|
|
# if __clang_major__ < 10 || (__clang_major__ == 10 && __clang_minor__ < 0)
|
|
|
|
# error You need at least XCode Clang v10.0 to compile libvirt
|
2020-06-17 19:41:28 +00:00
|
|
|
# endif
|
|
|
|
# else
|
2022-01-12 16:51:33 +00:00
|
|
|
# if __clang_major__ < 6 || (__clang_major__ == 6 && __clang_minor__ < 4)
|
|
|
|
# error You need at least Clang v6.0 to compile libvirt
|
2020-06-17 19:41:28 +00:00
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
#elif defined(__GNUC__) && defined(__GNUC_MINOR__)
|
2022-01-12 16:47:17 +00:00
|
|
|
# if __GNUC__ < 7 || (__GNUC__ == 7 && __GNUC_MINOR__ < 4)
|
|
|
|
# error You need at least GCC v7.4.0 to compile libvirt
|
2020-06-17 19:41:28 +00:00
|
|
|
# endif
|
|
|
|
#else
|
2022-01-12 16:51:33 +00:00
|
|
|
# error You either need at least GCC 7.4.0 or Clang 6.0 or XCode Clang 10.0 to compile libvirt
|
2020-06-17 19:41:28 +00:00
|
|
|
#endif
|