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
703B

  1. diff -Naur Python-3.8.0-orig/Modules/_multiprocessing/multiprocessing.c Python-3.8.0/Modules/_multiprocessing/multiprocessing.c
  2. --- Python-3.8.0-orig/Modules/_multiprocessing/multiprocessing.c 2019-10-14 16:34:47.000000000 +0300
  3. +++ Python-3.8.0/Modules/_multiprocessing/multiprocessing.c 2019-10-22 10:04:35.437120500 +0300
  4. @@ -128,7 +128,7 @@
  5. {"recv", multiprocessing_recv, METH_VARARGS, ""},
  6. {"send", multiprocessing_send, METH_VARARGS, ""},
  7. #endif
  8. -#if !defined(POSIX_SEMAPHORES_NOT_ENABLED) && !defined(__ANDROID__)
  9. +#if defined(MS_WINDOWS) || (!defined(POSIX_SEMAPHORES_NOT_ENABLED) && !defined(__ANDROID__))
  10. {"sem_unlink", _PyMp_sem_unlink, METH_VARARGS, ""},
  11. #endif
  12. {NULL}