Last change
on this file since 18769 was 16204, checked in by vboxsync, 16 years ago |
export the boost stuff required for Main
|
File size:
868 bytes
|
Line | |
---|
1 | // (C) Copyright Noel Belcourt 2007.
|
---|
2 | // Use, modification and distribution are subject to the
|
---|
3 | // Boost Software License, Version 1.0. (See accompanying file
|
---|
4 | // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
---|
5 |
|
---|
6 | // See http://www.boost.org for most recent version.
|
---|
7 |
|
---|
8 | // PGI C++ compiler setup:
|
---|
9 |
|
---|
10 | #define BOOST_COMPILER_VERSION __PGIC__##__PGIC_MINOR__
|
---|
11 | #define BOOST_COMPILER "PGI compiler version " BOOST_STRINGIZE(_COMPILER_VERSION)
|
---|
12 |
|
---|
13 | //
|
---|
14 | // Threading support:
|
---|
15 | // Turn this on unconditionally here, it will get turned off again later
|
---|
16 | // if no threading API is detected.
|
---|
17 | //
|
---|
18 |
|
---|
19 | #if (__PGIC__ >= 7)
|
---|
20 |
|
---|
21 | #define BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL
|
---|
22 | #define BOOST_NO_TWO_PHASE_NAME_LOOKUP
|
---|
23 | #define BOOST_NO_SWPRINTF
|
---|
24 |
|
---|
25 | #else
|
---|
26 |
|
---|
27 | # error "Pgi compiler not configured - please reconfigure"
|
---|
28 |
|
---|
29 | #endif
|
---|
30 | //
|
---|
31 | // version check:
|
---|
32 | // probably nothing to do here?
|
---|
33 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.