Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r50574 - trunk/boost/config
From: john_at_[hidden]
Date: 2009-01-14 05:36:14


Author: johnmaddock
Date: 2009-01-14 05:36:14 EST (Wed, 14 Jan 2009)
New Revision: 50574
URL: http://svn.boost.org/trac/boost/changeset/50574

Log:
Fixes #2653.
Text files modified:
   trunk/boost/config/select_platform_config.hpp | 4 ++--
   1 files changed, 2 insertions(+), 2 deletions(-)

Modified: trunk/boost/config/select_platform_config.hpp
==============================================================================
--- trunk/boost/config/select_platform_config.hpp (original)
+++ trunk/boost/config/select_platform_config.hpp 2009-01-14 05:36:14 EST (Wed, 14 Jan 2009)
@@ -13,8 +13,8 @@
 // <header_name> in order to prevent macro expansion within the header
 // name (for example "linux" is a macro on linux systems).
 
-#if defined(linux) || defined(__linux) || defined(__linux__)
-// linux:
+#if defined(linux) || defined(__linux) || defined(__linux__) || defined(__GNU__) || defined(__GLIBC__)
+// linux, also other platforms (Hurd etc) that use GLIBC, should these really have their own config headers though?
 # define BOOST_PLATFORM_CONFIG "boost/config/platform/linux.hpp"
 
 #elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk