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.

21 lines
797B

  1. --- Python-3.8.0/configure.ac.orig 2019-10-24 13:55:46.684382200 +0300
  2. +++ Python-3.8.0/configure.ac 2019-10-24 13:55:55.334394400 +0300
  3. @@ -4990,7 +4990,7 @@
  4. # On Android and Cygwin the shared libraries must be linked with libpython.
  5. AC_SUBST(LIBPYTHON)
  6. -if test -n "$ANDROID_API_LEVEL" -o "$MACHDEP" = "cygwin"; then
  7. +if test -n "$ANDROID_API_LEVEL" -o "$MACHDEP" = "cygwin" -o "$MACHDEP" = "win"; then
  8. LIBPYTHON="-lpython${VERSION}${ABIFLAGS}"
  9. else
  10. LIBPYTHON=''
  11. --- Python-3.8.0/Misc/python.pc.in.orig 2019-10-24 13:55:46.684382200 +0300
  12. +++ Python-3.8.0/Misc/python.pc.in 2019-10-24 13:55:55.334394400 +0300
  13. @@ -9,5 +9,5 @@
  14. Requires:
  15. Version: @VERSION@
  16. Libs.private: @LIBS@
  17. -Libs:
  18. +Libs: -L${libdir} -lpython@VERSION@@ABIFLAGS@
  19. Cflags: -I${includedir}/python@VERSION@@ABIFLAGS@