chiark / gitweb /
Remove gnutls check
[elogind.git] / src / shared / build.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #pragma once
4
5 /***
6   This file is part of systemd.
7
8   Copyright 2010 Lennart Poettering
9
10   systemd is free software; you can redistribute it and/or modify it
11   under the terms of the GNU Lesser General Public License as published by
12   the Free Software Foundation; either version 2.1 of the License, or
13   (at your option) any later version.
14
15   systemd is distributed in the hope that it will be useful, but
16   WITHOUT ANY WARRANTY; without even the implied warranty of
17   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18   Lesser General Public License for more details.
19
20   You should have received a copy of the GNU Lesser General Public License
21   along with systemd; If not, see <http://www.gnu.org/licenses/>.
22 ***/
23
24 #ifdef HAVE_PAM
25 #define _PAM_FEATURE_ "+PAM"
26 #else
27 #define _PAM_FEATURE_ "-PAM"
28 #endif
29
30 #ifdef HAVE_SELINUX
31 #define _SELINUX_FEATURE_ "+SELINUX"
32 #else
33 #define _SELINUX_FEATURE_ "-SELINUX"
34 #endif
35
36 #ifdef HAVE_APPARMOR
37 #define _APPARMOR_FEATURE_ "+APPARMOR"
38 #else
39 #define _APPARMOR_FEATURE_ "-APPARMOR"
40 #endif
41
42 #ifdef HAVE_SMACK
43 #define _SMACK_FEATURE_ "+SMACK"
44 #else
45 #define _SMACK_FEATURE_ "-SMACK"
46 #endif
47
48 #ifdef HAVE_ACL
49 #define _ACL_FEATURE_ "+ACL"
50 #else
51 #define _ACL_FEATURE_ "-ACL"
52 #endif
53
54 #ifdef HAVE_SECCOMP
55 #define _SECCOMP_FEATURE_ "+SECCOMP"
56 #else
57 #define _SECCOMP_FEATURE_ "-SECCOMP"
58 #endif
59
60 #ifdef HAVE_BLKID
61 #define _BLKID_FEATURE_ "+BLKID"
62 #else
63 #define _BLKID_FEATURE_ "-BLKID"
64 #endif
65
66 #ifdef HAVE_LIBIDN
67 #define _IDN_FEATURE_ "+IDN"
68 #else
69 #define _IDN_FEATURE_ "-IDN"
70 #endif
71
72 #define SYSTEMD_FEATURES                                                \
73         _PAM_FEATURE_ " "                                               \
74         _SELINUX_FEATURE_ " "                                           \
75         _APPARMOR_FEATURE_ " "                                          \
76         _SMACK_FEATURE_ " "                                             \
77         _ACL_FEATURE_ " "                                               \
78         _SECCOMP_FEATURE_ " "                                           \
79         _BLKID_FEATURE_ " "                                             \
80         _IDN_FEATURE_