config-post.h 1.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * Copyright (C) 2013 Red Hat, Inc.
 *
 * 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/>.
 */

19
#ifndef __GNUC__
20
# error "Libvirt requires GCC >= 4.8, or CLang"
21 22
#endif

F
Fabian Freyer 已提交
23
/*
24
 * Define __GNUC_PREREQ to a sane default if it isn't yet defined.
F
Fabian Freyer 已提交
25 26 27
 * This is done here so that it's included as early as possible; gnulib relies
 * on this to be defined in features.h, which should be included from ctype.h.
 * This doesn't happen on many non-glibc systems.
28
 * When __GNUC_PREREQ is not defined, gnulib defines it to 0, which breaks things.
F
Fabian Freyer 已提交
29
 */
30
#ifndef __GNUC_PREREQ
31
# define __GNUC_PREREQ(maj, min) \
32 33 34
    ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
#endif

35 36
#if !(__GNUC_PREREQ(4, 8) || defined(__clang__))
# error "Libvirt requires GCC >= 4.8, or CLang"
F
Fabian Freyer 已提交
37
#endif