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.

22 lines
910B

  1. diff -Naur Python-3.8.0-orig/Lib/distutils/msvc9compiler.py Python-3.8.0/Lib/distutils/msvc9compiler.py
  2. --- Python-3.8.0-orig/Lib/distutils/msvc9compiler.py 2019-10-14 16:34:47.000000000 +0300
  3. +++ Python-3.8.0/Lib/distutils/msvc9compiler.py 2019-10-22 10:05:17.120393700 +0300
  4. @@ -292,8 +292,6 @@
  5. # More globals
  6. VERSION = get_build_version()
  7. -if VERSION < 8.0:
  8. - raise DistutilsPlatformError("VC %0.1f is not supported by this module" % VERSION)
  9. # MACROS = MacroExpander(VERSION)
  10. class MSVCCompiler(CCompiler) :
  11. @@ -328,6 +326,8 @@
  12. def __init__(self, verbose=0, dry_run=0, force=0):
  13. CCompiler.__init__ (self, verbose, dry_run, force)
  14. + if VERSION < 8.0:
  15. + raise DistutilsPlatformError("VC %0.1f is not supported by this module" % VERSION)
  16. self.__version = VERSION
  17. self.__root = r"Software\Microsoft\VisualStudio"
  18. # self.__macros = MACROS