Cross-Platform build scripts for audio plugins
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
533B

  1. diff -Naur Python-3.8.0-orig/Include/fileobject.h Python-3.8.0/Include/fileobject.h
  2. --- Python-3.8.0-orig/Include/fileobject.h 2019-10-14 16:34:47.000000000 +0300
  3. +++ Python-3.8.0/Include/fileobject.h 2019-10-22 10:05:02.627968300 +0300
  4. @@ -23,7 +23,7 @@
  5. PyAPI_DATA(int) Py_HasFileSystemDefaultEncoding;
  6. /* A routine to check if a file descriptor can be select()-ed. */
  7. -#ifdef _MSC_VER
  8. +#ifdef MS_WINDOWS
  9. /* On Windows, any socket fd can be select()-ed, no matter how high */
  10. #define _PyIsSelectable_fd(FD) (1)
  11. #else