00001 // 00002 // Boost.Process 00003 // ~~~~~~~~~~~~~ 00004 // 00005 // Copyright (c) 2006, 2007 Julio M. Merino Vidal 00006 // Copyright (c) 2008 Boris Schaeling 00007 // 00008 // Distributed under the Boost Software License, Version 1.0. (See accompanying 00009 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 00010 // 00011 00019 #ifndef BOOST_PROCESS_CONFIG_HPP 00020 #define BOOST_PROCESS_CONFIG_HPP 00021 00022 #include <boost/config.hpp> 00023 #include <boost/system/config.hpp> 00024 00025 #if defined(BOOST_POSIX_API) || defined(BOOST_PROCESS_DOXYGEN) 00026 # if !defined(BOOST_PROCESS_POSIX_PATH_MAX) 00027 00037 # define BOOST_PROCESS_POSIX_PATH_MAX 259 00038 # endif 00039 #endif 00040 00041 #endif