
Markus, do you plan to publish the regressiont tests for Tru64? It'd be fine to have those for the upcoming release. Also, I think you were in charge of IBM Visual Age, weren't you? Joaquín M López Muñoz Telefónica, Investigación y Desarrollo Markus Schöpflin ha escrito:
John Maddock wrote:
The code in question is:
# if defined(_POSIX_THREAD_SAFE_FUNCTIONS) \ && defined(_SC_THREAD_SAFE_FUNCTIONS) \ && _POSIX_THREAD_SAFE_FUNCTIONS >= 0 if ( ::sysconf( _SC_THREAD_SAFE_FUNCTIONS ) >= 0 ) { return ::readdir_r( dirp, entry, result ); } # endif
Seems like _POSIX_THREAD_SAFE_FUNCTIONS but doesn't expand to anything.
That's a common problem with the POSIX feature test macros, the workaround is to use :
(_POSIX_THREAD_SAFE_FUNCTIONS+0 >= 0)
Fixed and commited. Thanks for the hint.
Markus
_______________________________________________ Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost