~ubuntu-branches/ubuntu/warty/aqsis/warty

« back to all changes in this revision

Viewing changes to boost/boost/config/compiler/common_edg.hpp

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones
  • Date: 2004-08-24 07:25:04 UTC
  • Revision ID: james.westby@ubuntu.com-20040824072504-zf993vnevvisdsvb
Tags: upstream-0.9.1
ImportĀ upstreamĀ versionĀ 0.9.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//  (C) Copyright Boost.org 2001. Permission to copy, use, modify, sell and
 
2
//  distribute this software is granted provided this copyright notice appears
 
3
//  in all copies. This software is provided "as is" without express or implied
 
4
//  warranty, and with no claim as to its suitability for any purpose.
 
5
 
 
6
//  See http://www.boost.org for most recent version.
 
7
 
 
8
//
 
9
// Options common to all edg based compilers.
 
10
//
 
11
// This is included from within the individual compiler mini-configs.
 
12
 
 
13
#ifndef  __EDG_VERSION__
 
14
#  error This file requires that __EDG_VERSION__ be defined.
 
15
#endif
 
16
 
 
17
#if (__EDG_VERSION__ <= 238)
 
18
#   define BOOST_NO_INTEGRAL_INT64_T
 
19
#endif
 
20
 
 
21
#if (__EDG_VERSION__ <= 240)
 
22
#   define BOOST_NO_VOID_RETURNS
 
23
#endif
 
24
 
 
25
#if (__EDG_VERSION__ <= 241) && !defined(BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP)
 
26
#   define BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP
 
27
#endif
 
28
 
 
29
#if (__EDG_VERSION__ <= 244) && !defined(BOOST_NO_TEMPLATE_TEMPLATES)
 
30
#   define BOOST_NO_TEMPLATE_TEMPLATES
 
31
#endif 
 
32
 
 
33
// See also kai.hpp which checks a Kai-specific symbol for EH
 
34
# if !defined(__KCC) && !defined(__EXCEPTIONS)
 
35
#     define BOOST_NO_EXCEPTIONS
 
36
# endif
 
37
 
 
38
# if !defined(__NO_LONG_LONG)
 
39
#     define BOOST_HAS_LONG_LONG
 
40
# endif
 
41
 
 
42
#ifdef c_plusplus
 
43
// EDG has "long long" in non-strict mode
 
44
// However, some libraries have insufficient "long long" support
 
45
// #define BOOST_HAS_LONG_LONG
 
46
#endif
 
47
 
 
48