blob: 90d867f8e832edce17dd8f8f1e32283ef95911c2 (
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-2009 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 the device locking with liblockdev is available */
#undef SBUILD_FEATURE_DEVLOCK
/* 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 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 <boost/shared_ptr.hpp> header file. */
#undef HAVE_BOOST_SHARED_PTR_HPP
/* Define to 1 if you have the <boost/tuple/tuple.hpp> header file. */
#undef HAVE_BOOST_TUPLE_TUPLE_HPP
/* Define to 1 if you have the <tr1/memory> header file. */
#undef HAVE_TR1_MEMORY
/* Define to 1 if you have the <tr1/tuple> header file. */
#undef HAVE_TR1_TUPLE
/* 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:
*/
|