Sha256: f2db7f78f7cd916a2842dcac7b66066cc044895f2841f4c76f0eb7a3dccd7260

Contents?: true

Size: 1.18 KB

Versions: 15

Compression:

Stored size: 1.18 KB

Contents

#ifndef DATE_TIME_LOCALE_CONFIG_HPP___
#define DATE_TIME_LOCALE_CONFIG_HPP___

/* Copyright (c) 2002-2020 CrystalClear Software, Inc.
 * Use, modification and distribution is subject to the
 * Boost Software License, Version 1.0. (See accompanying
 * file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
 * Author: Jeff Garland
 * $Date$
 */

// This file configures whether the library will support locales and hence
// iostream based i/o.  Even if a compiler has some support for locales,
// any failure to be compatible gets the compiler on the exclusion list.
//
// At the moment this is defined for MSVC 6 and any compiler that
// defines BOOST_NO_STD_LOCALE (gcc 2.95.x)

#include "boost/config.hpp" //sets BOOST_NO_STD_LOCALE
#include "boost/config/workaround.hpp"

//This file basically becomes a noop if locales are not properly supported
#if (defined(BOOST_NO_STD_LOCALE)  \
 || (BOOST_WORKAROUND( BOOST_MSVC, < 1300)) \
 || (BOOST_WORKAROUND( BOOST_BORLANDC, BOOST_TESTED_AT( 0x581 )) ) \
 || (BOOST_WORKAROUND( BOOST_XLCPP_ZOS, BOOST_TESTED_AT( 0x42010000 )) ) /* <cctype> "shadows" the locale enabled overloads from <locale> */ \
 )
#define BOOST_DATE_TIME_NO_LOCALE
#endif


#endif

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
passenger-6.0.24 src/cxx_supportlib/vendor-modified/boost/date_time/locale_config.hpp
passenger-6.0.23 src/cxx_supportlib/vendor-modified/boost/date_time/locale_config.hpp
passenger-6.0.20 src/cxx_supportlib/vendor-modified/boost/date_time/locale_config.hpp
passenger-6.0.19 src/cxx_supportlib/vendor-modified/boost/date_time/locale_config.hpp
passenger-6.0.18 src/cxx_supportlib/vendor-modified/boost/date_time/locale_config.hpp
passenger-6.0.17 src/cxx_supportlib/vendor-modified/boost/date_time/locale_config.hpp
passenger-6.0.16 src/cxx_supportlib/vendor-modified/boost/date_time/locale_config.hpp
passenger-6.0.15 src/cxx_supportlib/vendor-modified/boost/date_time/locale_config.hpp
passenger-6.0.14 src/cxx_supportlib/vendor-modified/boost/date_time/locale_config.hpp
passenger-6.0.13 src/cxx_supportlib/vendor-modified/boost/date_time/locale_config.hpp
passenger-6.0.12 src/cxx_supportlib/vendor-modified/boost/date_time/locale_config.hpp
passenger-6.0.11 src/cxx_supportlib/vendor-modified/boost/date_time/locale_config.hpp
passenger-6.0.10 src/cxx_supportlib/vendor-modified/boost/date_time/locale_config.hpp
passenger-6.0.9 src/cxx_supportlib/vendor-modified/boost/date_time/locale_config.hpp
passenger-6.0.8 src/cxx_supportlib/vendor-modified/boost/date_time/locale_config.hpp