~ubuntu-branches/ubuntu/wily/ruby-passenger/wily-proposed

« back to all changes in this revision

Viewing changes to ext/boost/smart_ptr/detail/sp_counted_base.hpp

  • Committer: Package Import Robot
  • Author(s): Felix Geyer
  • Date: 2013-11-23 23:50:02 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20131123235002-8fdhsq7afj15o2z2
Tags: 4.0.25-1
* New upstream release.
* Refresh fix_install_path.patch.
* Build for Ruby 2.0 instead of 1.8. (Closes: #725591)
* Add fix_ftbfs_fortify_source.patch.
* Install passenger template files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
#elif defined( BOOST_DISABLE_THREADS ) && !defined( BOOST_SP_ENABLE_THREADS ) && !defined( BOOST_DISABLE_WIN32 )
33
33
# include <boost/smart_ptr/detail/sp_counted_base_nt.hpp>
34
34
 
35
 
#elif defined( __GNUC__ ) && ( defined( __i386__ ) || defined( __x86_64__ ) )
 
35
#elif defined( __SNC__ )
 
36
# include <boost/smart_ptr/detail/sp_counted_base_snc_ps3.hpp>
 
37
 
 
38
#elif defined( __GNUC__ ) && ( defined( __i386__ ) || defined( __x86_64__ ) ) && !defined(__PATHSCALE__)
36
39
# include <boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp>
37
40
 
38
 
#elif defined( __GNUC__ ) && defined( __ia64__ ) && !defined( __INTEL_COMPILER )
39
 
# include <boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp>
40
 
 
41
41
#elif defined(__HP_aCC) && defined(__ia64)
42
42
# include <boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp>
43
43
 
 
44
#elif defined( __GNUC__ ) && defined( __ia64__ ) && !defined( __INTEL_COMPILER ) && !defined(__PATHSCALE__)
 
45
# include <boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp>
 
46
 
44
47
#elif defined( __IBMCPP__ ) && defined( __powerpc )
45
48
# include <boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp>
46
49
 
47
50
#elif defined( __MWERKS__ ) && defined( __POWERPC__ )
48
51
# include <boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp>
49
52
 
50
 
#elif defined( __GNUC__ ) && ( defined( __powerpc__ ) || defined( __ppc__ ) || defined( __ppc ) )
 
53
#elif defined( __GNUC__ ) && ( defined( __powerpc__ ) || defined( __ppc__ ) || defined( __ppc ) ) && !defined(__PATHSCALE__) && !defined( _AIX )
51
54
# include <boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp>
52
55
 
53
 
#elif defined( __GNUC__ ) && ( defined( __mips__ ) || defined( _mips ) )
 
56
#elif defined( __GNUC__ ) && ( defined( __mips__ ) || defined( _mips ) ) && !defined(__PATHSCALE__)
54
57
# include <boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp>
55
58
 
56
59
#elif defined( BOOST_SP_HAS_SYNC )
62
65
#elif defined( WIN32 ) || defined( _WIN32 ) || defined( __WIN32__ ) || defined(__CYGWIN__)
63
66
# include <boost/smart_ptr/detail/sp_counted_base_w32.hpp>
64
67
 
 
68
#elif defined( _AIX )
 
69
# include <boost/smart_ptr/detail/sp_counted_base_aix.hpp>
 
70
 
65
71
#elif !defined( BOOST_HAS_THREADS )
66
72
# include <boost/smart_ptr/detail/sp_counted_base_nt.hpp>
67
73