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

  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:52.635234600 +0300
  3. +++ Python-3.8.0/setup.py 2019-10-22 10:02:04.772055900 +0300
  4. @@ -2257,6 +2257,8 @@
  5. openssl_includes = split_var('OPENSSL_INCLUDES', '-I')
  6. openssl_libdirs = split_var('OPENSSL_LDFLAGS', '-L')
  7. openssl_libs = split_var('OPENSSL_LIBS', '-l')
  8. + if MS_WINDOWS:
  9. + openssl_libs += ['ws2_32']
  10. if not openssl_libs:
  11. # libssl and libcrypto not found
  12. self.missing.extend(['_ssl', '_hashlib'])