summaryrefslogtreecommitdiff
path: root/lib/sbuild/config.h.in
blob: d4fdbe7011277e93267ca7acfde875e3ec84ab43 (plain)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/* Copyright © 2005-2013  Roger Leigh <rleigh@debian.org>
 *
 *
 * schroot is free software: you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * schroot 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
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see
 * <http://www.gnu.org/licenses/>.
 *
 *********************************************************************/

#ifndef SBUILD_CONFIG_H
#define SBUILD_CONFIG_H

/* This header contains configuration macros which determine the
   correct library to use.  This depends upon the libraries found at
   configure time. */

/* Set if NLS support is available */
#undef SBUILD_FEATURE_NLS

/* Set if PAM support is available */
#undef SBUILD_FEATURE_PAM

/* Set if personality support is present */
#undef SBUILD_FEATURE_PERSONALITY

/* Set if the block-device chroot type is present */
#undef SBUILD_FEATURE_BLOCKDEV

/* Set if the btrfs-snapshot chroot type is present */
#undef SBUILD_FEATURE_BTRFSSNAP

/* Set if the lvm-snapshot chroot type is present */
#undef SBUILD_FEATURE_LVMSNAP

/* Set if the loopback chroot type is present */
#undef SBUILD_FEATURE_LOOPBACK

/* Set if the union filesystem type is present */
#undef SBUILD_FEATURE_UNION

/* Define to 1 if you have the <boost/format.hpp> header file. */
#undef HAVE_BOOST_FORMAT_HPP

/* Define to 1 if you have the <boost/program_options.hpp> header file. */
#undef HAVE_BOOST_PROGRAM_OPTIONS_HPP

/* Define to 1 if you have the <memory> header file. */
#undef HAVE_MEMORY

/* Define to 1 if you have the <tuple> header file. */
#undef HAVE_TUPLE

/* Define to 1 if you have the <regex> header file and std::regex. */
#undef HAVE_REGEX_REGEX

/* Default regular expression used to filter user environment */
#undef SBUILD_DEFAULT_ENVIRONMENT_FILTER

#define SBUILD_MESSAGE_CATALOGUE "schroot"

#endif /* SBUILD_H */

/*
 * Local Variables:
 * mode:C++
 * End:
 */