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.

17 lines
731B

  1. diff -Naur Python-3.8.0-orig/setup.py Python-3.8.0/setup.py
  2. --- Python-3.8.0-orig/setup.py 2019-10-22 10:01:17.378172600 +0300
  3. +++ Python-3.8.0/setup.py 2019-10-22 10:01:29.904994600 +0300
  4. @@ -1667,7 +1667,12 @@
  5. libraries=libs,
  6. include_dirs=["Modules/_multiprocessing"]))
  7. + multiprocessing_libs = []
  8. + if MS_WINDOWS:
  9. + multiprocessing_libs += ['ws2_32']
  10. self.add(Extension('_multiprocessing', multiprocessing_srcs,
  11. + define_macros={},
  12. + libraries=multiprocessing_libs,
  13. include_dirs=["Modules/_multiprocessing"]))
  14. def detect_uuid(self):