Camm Maguire writes:
Greetings, and thanks Vadim!  Does this mean that non-blocking io via
fcntl does not work on mingw, or rather does it mean that the
configure test below is failing erroneously?


AC_MSG_CHECKING(check for listen using fcntl)
AC_TRY_COMPILE([#include <stdio.h>
#include <fcntl.h>
],
[FILE *fp=fopen("configure.in","r");
  int orig;
  orig = fcntl(fileno(fp), F_GETFL);
  if (! (orig & O_NONBLOCK )) return 0;
],
[AC_DEFINE(LISTEN_USE_FCNTL)
 AC_MSG_RESULT(yes)],
AC_MSG_RESULT(no))


Yes, this test fails. Configure log attached.

With best regards,

Vadim

--
      Vadim V. Zhytnikov

       <[EMAIL PROTECTED]>
      <[EMAIL PROTECTED]>

Attachment: config.log.gz
Description: GNU Zip compressed data

_______________________________________________
Gcl-devel mailing list
Gcl-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/gcl-devel

Reply via email to