mirror of
https://github.com/boostorg/config.git
synced 2025-07-30 04:17:16 +02:00
@ -1,7 +1,7 @@
|
||||
#
|
||||
# Regression test Jamfile for boost configuration setup.
|
||||
# *** DO NOT EDIT THIS FILE BY HAND ***
|
||||
# This file was automatically generated on Wed Apr 09 12:31:02 2008
|
||||
# This file was automatically generated on Wed Apr 09 16:30:14 2008
|
||||
# by libs/config/tools/generate.cpp
|
||||
# Copyright John Maddock.
|
||||
# Use, modification and distribution are subject to the
|
||||
|
@ -1023,6 +1023,7 @@ void print_boost_macros()
|
||||
|
||||
|
||||
|
||||
|
||||
// END GENERATED BLOCK
|
||||
|
||||
PRINT_MACRO(BOOST_INTEL);
|
||||
|
@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Wed Apr 09 12:31:02 2008
|
||||
// This file was automatically generated on Wed Apr 09 16:30:14 2008
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
@ -1,15 +1,18 @@
|
||||
// This file was automatically generated on Sat Apr 02 11:49:12 2005
|
||||
// This file was automatically generated on Wed Apr 09 16:30:13 2008
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
// Boost Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
// See http://www.boost.org/libs/config for the most recent version.
|
||||
// See http://www.boost.org/libs/config for the most recent version.//
|
||||
// Revision $Id$
|
||||
//
|
||||
|
||||
// Test file for macro BOOST_HAS_TR1_ARRAY
|
||||
|
||||
// Test file for macro BOOST_HAS_TR1_REGEX
|
||||
// This file should not compile, if it does then
|
||||
// BOOST_HAS_TR1_ARRAY should be defined.
|
||||
// BOOST_HAS_TR1_REGEX should be defined.
|
||||
// See file boost_has_tr1_regex.ipp for details
|
||||
|
||||
// Must not have BOOST_ASSERT_CONFIG set; it defeats
|
||||
@ -21,7 +24,7 @@
|
||||
#include <boost/config.hpp>
|
||||
#include "test.hpp"
|
||||
|
||||
#ifndef BOOST_HAS_TR1_ARRAY
|
||||
#ifndef BOOST_HAS_TR1_REGEX
|
||||
#include "boost_has_tr1_regex.ipp"
|
||||
#else
|
||||
#error "this file should not compile"
|
||||
@ -29,6 +32,6 @@
|
||||
|
||||
int main( int, char *[] )
|
||||
{
|
||||
return boost_has_tr1_array::test();
|
||||
return boost_has_tr1_regex::test();
|
||||
}
|
||||
|
||||
|
@ -1,15 +1,18 @@
|
||||
// This file was automatically generated on Sat Apr 02 11:49:12 2005
|
||||
// This file was automatically generated on Wed Apr 09 16:30:13 2008
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
// Boost Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
// See http://www.boost.org/libs/config for the most recent version.
|
||||
// See http://www.boost.org/libs/config for the most recent version.//
|
||||
// Revision $Id$
|
||||
//
|
||||
|
||||
// Test file for macro BOOST_HAS_TR1_ARRAY
|
||||
|
||||
// Test file for macro BOOST_HAS_TR1_REGEX
|
||||
// This file should compile, if it does not then
|
||||
// BOOST_HAS_TR1_ARRAY should not be defined.
|
||||
// BOOST_HAS_TR1_REGEX should not be defined.
|
||||
// See file boost_has_tr1_regex.ipp for details
|
||||
|
||||
// Must not have BOOST_ASSERT_CONFIG set; it defeats
|
||||
@ -21,14 +24,14 @@
|
||||
#include <boost/config.hpp>
|
||||
#include "test.hpp"
|
||||
|
||||
#ifdef BOOST_HAS_TR1_ARRAY
|
||||
#ifdef BOOST_HAS_TR1_REGEX
|
||||
#include "boost_has_tr1_regex.ipp"
|
||||
#else
|
||||
namespace boost_has_tr1_array = empty_boost;
|
||||
namespace boost_has_tr1_regex = empty_boost;
|
||||
#endif
|
||||
|
||||
int main( int, char *[] )
|
||||
{
|
||||
return boost_has_tr1_array::test();
|
||||
return boost_has_tr1_regex::test();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user