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

  1. diff -Naur Python-3.8.0-orig/Modules/getpath.c Python-3.8.0/Modules/getpath.c
  2. --- Python-3.8.0-orig/Modules/getpath.c 2019-10-22 10:02:51.821738500 +0300
  3. +++ Python-3.8.0/Modules/getpath.c 2019-10-22 10:05:05.467173300 +0300
  4. @@ -373,7 +373,7 @@
  5. /* Check for already have an executable suffix */
  6. size_t n = wcslen(progpath);
  7. size_t s = wcslen(EXE_SUFFIX);
  8. - if (wcsncasecmp(EXE_SUFFIX, progpath + n - s, s) == 0) {
  9. + if (_wcsnicmp(EXE_SUFFIX, progpath + n - s, s) == 0) {
  10. return _PyStatus_OK();
  11. }