From ab380bb46e922619b4a1593cf839d703ca71ccca Mon Sep 17 00:00:00 2001 From: Kai Tietz Date: Mon, 4 Apr 2011 09:31:11 +0200 Subject: re PR ada/47163 (Failure building target-libada for MingW64) 2011-04-04 Kai Tietz PR ada/47163 * s-oscons-tmplt.c (MSG_WAITALL): Define it for native windows targets to flag value. From-SVN: r171926 --- gcc/ada/s-oscons-tmplt.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'gcc/ada/s-oscons-tmplt.c') diff --git a/gcc/ada/s-oscons-tmplt.c b/gcc/ada/s-oscons-tmplt.c index ed3653a..ba72023 100644 --- a/gcc/ada/s-oscons-tmplt.c +++ b/gcc/ada/s-oscons-tmplt.c @@ -1084,6 +1084,11 @@ CND(MSG_PEEK, "Peek at incoming data") CND(MSG_EOR, "Send end of record") #ifndef MSG_WAITALL +#ifdef __MINWGW32__ +/* The value of MSG_WAITALL is 8. Nevertheless winsock.h doesn't + define it, but it is still usable as we link to winsock2 API. */ +# define MSG_WAITALL (1 << 3) +#else # define MSG_WAITALL -1 #endif CND(MSG_WAITALL, "Wait for full reception") -- cgit v1.1