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.

20 lines
480B

  1. diff -Naur Python-3.8.0-orig/configure.ac Python-3.8.0/configure.ac
  2. --- Python-3.8.0-orig/configure.ac 2019-10-22 10:03:48.434238000 +0300
  3. +++ Python-3.8.0/configure.ac 2019-10-22 10:04:20.273893900 +0300
  4. @@ -5668,6 +5668,15 @@
  5. done
  6. AC_MSG_RESULT(done)
  7. +# For mingw build need additional library for linking
  8. +case $host in
  9. + *-*-mingw*)
  10. + LIBS="$LIBS -lversion -lshlwapi"
  11. + ;;
  12. + *)
  13. + ;;
  14. +esac
  15. +
  16. # Availability of -O2:
  17. AC_MSG_CHECKING(for -O2)
  18. saved_cflags="$CFLAGS"