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.

16 lines
628B

  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:04:55.763956200 +0300
  3. +++ Python-3.8.0/setup.py 2019-10-22 10:04:59.804363300 +0300
  4. @@ -911,7 +911,10 @@
  5. def detect_readline_curses(self):
  6. # readline
  7. - do_readline = self.compiler.find_library_file(self.lib_dirs, 'readline')
  8. + if not MS_WINDOWS:
  9. + do_readline = self.compiler.find_library_file(self.lib_dirs, 'readline')
  10. + else:
  11. + do_readline = False
  12. readline_termcap_library = ""
  13. curses_library = ""
  14. # Cannot use os.popen here in py3k.