[config] [patch] Fix support for OpenBSD

We just got a mail from a LyX user telling us that this patch is needed to compile on OpenBSD. Would be nice if this could be included in Boost (and in 1.31.1 when that is released.) TIA. --- boost/boost/config/platform/bsd.hpp.orig 2002-05-21 19:39:55.000000000 -0400 +++ boost/boost/config/platform/bsd.hpp 2004-02-22 02:24:05.000000000 -0500 @@ -44,7 +44,9 @@ // // The BSD <ctype.h> has macros only, no functions: // -#define BOOST_NO_CTYPE_FUNCTIONS +#if !defined(__OpenBSD__) +# define BOOST_NO_CTYPE_FUNCTIONS +#endif -- Lgb

We just got a mail from a LyX user telling us that this patch is needed to compile on OpenBSD.
Would be nice if this could be included in Boost (and in 1.31.1 when that is released.)
Will do, although that macro is no longer being used anywhere as far as I can tell. John.

"John Maddock" <john@johnmaddock.co.uk> writes:
We just got a mail from a LyX user telling us that this patch is needed to compile on OpenBSD.
Would be nice if this could be included in Boost (and in 1.31.1 when that is released.)
| Will do, although that macro is no longer being used anywhere as far as I | can tell. As long as the macro is kept in the other config files I guess it should be done. (thanks). But OTOH since it is not used anymore, perhaps is should just be removed from all places where it is mentioned now? -- Lgb
participants (2)
-
John Maddock
-
larsbj@gullik.net