/* Copyright © 2005-2013 Roger Leigh * * * 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 * . * *********************************************************************/ #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 header file. */ #undef HAVE_BOOST_FORMAT_HPP /* Define to 1 if you have the header file. */ #undef HAVE_BOOST_PROGRAM_OPTIONS_HPP /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY /* Define to 1 if you have the header file. */ #undef HAVE_TUPLE /* Define to 1 if you have the 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: */