Detect the presence of backward/hash_set and backward/hash_map appropriately. Fixes #1462 (again)

[SVN r47424]
This commit is contained in:
Douglas Gregor
2008-07-14 18:43:58 +00:00
parent 06f3a2ebd7
commit 2442c44175

View File

@ -68,7 +68,7 @@
# define BOOST_HAS_SLIST # define BOOST_HAS_SLIST
# define BOOST_HAS_HASH # define BOOST_HAS_HASH
# define BOOST_SLIST_HEADER <ext/slist> # define BOOST_SLIST_HEADER <ext/slist>
# if defined(__GLIBCXX__) && __GLIBCXX__ < 20071018 // GCC <= 4.3.0 # if !defined(__GNUC__) || __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 3)
# define BOOST_HASH_SET_HEADER <ext/hash_set> # define BOOST_HASH_SET_HEADER <ext/hash_set>
# define BOOST_HASH_MAP_HEADER <ext/hash_map> # define BOOST_HASH_MAP_HEADER <ext/hash_map>
# else # else