[24167] | 1 | /* Copyright © 2005-2009 Roger Leigh <rleigh@debian.org> |
---|
| 2 | * |
---|
| 3 | * |
---|
| 4 | * schroot is free software: you can redistribute it and/or modify it |
---|
| 5 | * under the terms of the GNU General Public License as published by |
---|
| 6 | * the Free Software Foundation, either version 3 of the License, or |
---|
| 7 | * (at your option) any later version. |
---|
| 8 | * |
---|
| 9 | * schroot is distributed in the hope that it will be useful, but |
---|
| 10 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
| 12 | * General Public License for more details. |
---|
| 13 | * |
---|
| 14 | * You should have received a copy of the GNU General Public License |
---|
| 15 | * along with this program. If not, see |
---|
| 16 | * <http://www.gnu.org/licenses/>. |
---|
| 17 | * |
---|
| 18 | *********************************************************************/ |
---|
| 19 | |
---|
| 20 | #ifndef SBUILD_CONFIG_H |
---|
| 21 | #define SBUILD_CONFIG_H |
---|
| 22 | |
---|
| 23 | /* This header contains configuration macros which determine the |
---|
| 24 | correct library to use. This depends upon the libraries found at |
---|
| 25 | configure time. */ |
---|
| 26 | |
---|
| 27 | /* Set if the device locking with liblockdev is available */ |
---|
| 28 | #undef SBUILD_FEATURE_DEVLOCK |
---|
| 29 | |
---|
| 30 | /* Set if PAM support is available */ |
---|
| 31 | #undef SBUILD_FEATURE_PAM |
---|
| 32 | |
---|
| 33 | /* Set if personality support is present */ |
---|
| 34 | #undef SBUILD_FEATURE_PERSONALITY |
---|
| 35 | |
---|
| 36 | /* Set if the block-device chroot type is present */ |
---|
| 37 | #undef SBUILD_FEATURE_BLOCKDEV |
---|
| 38 | |
---|
| 39 | /* Set if the lvm-snapshot chroot type is present */ |
---|
| 40 | #undef SBUILD_FEATURE_LVMSNAP |
---|
| 41 | |
---|
| 42 | /* Set if the loopback chroot type is present */ |
---|
| 43 | #undef SBUILD_FEATURE_LOOPBACK |
---|
| 44 | |
---|
| 45 | /* Set if the union filesystem type is present */ |
---|
| 46 | #undef SBUILD_FEATURE_UNION |
---|
| 47 | |
---|
| 48 | /* Define to 1 if you have the <boost/format.hpp> header file. */ |
---|
| 49 | #undef HAVE_BOOST_FORMAT_HPP |
---|
| 50 | |
---|
| 51 | /* Define to 1 if you have the <boost/program_options.hpp> header file. */ |
---|
| 52 | #undef HAVE_BOOST_PROGRAM_OPTIONS_HPP |
---|
| 53 | |
---|
| 54 | /* Define to 1 if you have the <boost/shared_ptr.hpp> header file. */ |
---|
| 55 | #undef HAVE_BOOST_SHARED_PTR_HPP |
---|
| 56 | |
---|
| 57 | /* Define to 1 if you have the <boost/tuple/tuple.hpp> header file. */ |
---|
| 58 | #undef HAVE_BOOST_TUPLE_TUPLE_HPP |
---|
| 59 | |
---|
| 60 | /* Define to 1 if you have the <tr1/memory> header file. */ |
---|
| 61 | #undef HAVE_TR1_MEMORY |
---|
| 62 | |
---|
| 63 | /* Define to 1 if you have the <tr1/tuple> header file. */ |
---|
| 64 | #undef HAVE_TR1_TUPLE |
---|
| 65 | |
---|
| 66 | /* Default regular expression used to filter user environment */ |
---|
| 67 | #undef SBUILD_DEFAULT_ENVIRONMENT_FILTER |
---|
| 68 | |
---|
| 69 | #define SBUILD_MESSAGE_CATALOGUE "schroot" |
---|
| 70 | |
---|
| 71 | #endif /* SBUILD_H */ |
---|
| 72 | |
---|
| 73 | /* |
---|
| 74 | * Local Variables: |
---|
| 75 | * mode:C++ |
---|
| 76 | * End: |
---|
| 77 | */ |
---|