Cesar Strauss <[EMAIL PROTECTED]> writes: > > The attached patch addresses the following issues on MinGW, when > building the CVS HEAD version of guile:
Actually, portability things are being tackled first in the 1.8 branch, then merged into the head periodically. There's some mingw pthread fixes there which haven't made it to the head yet for instance, if you'd like to give them a try. > -# define LC_MESSAGES_MASK (1 << LC_MESSAGES) > +# ifdef LC_MESSAGES /* undefined on mingw */ > +# define LC_MESSAGES_MASK (1 << LC_MESSAGES) > +# else > +# define LC_MESSAGES_MASK 0 > +# endif I'll leave that for Ludovic to contemplate, I think he said he'll change it to use just the base LC bits, not an extra set of mask values. _______________________________________________ Bug-guile mailing list [email protected] http://lists.gnu.org/mailman/listinfo/bug-guile
