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.

33 lines
1.0KB

  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:01:23.898984100 +0300
  3. +++ Python-3.8.0/configure.ac 2019-10-22 10:01:25.833387400 +0300
  4. @@ -5515,6 +5515,16 @@
  5. ;;
  6. esac
  7. +dnl Python interpreter main program for frozen scripts
  8. +AC_SUBST(PYTHON_OBJS_FROZENMAIN)
  9. +PYTHON_OBJS_FROZENMAIN="Python/frozenmain.o"
  10. +case $host in
  11. + *-*-mingw*)
  12. + dnl 'PC/frozen_dllmain.c' - not yet
  13. + PYTHON_OBJS_FROZENMAIN=
  14. + ;;
  15. +esac
  16. +
  17. AC_SUBST(SRCDIRS)
  18. SRCDIRS="Parser Objects Python Modules Modules/_io Programs"
  19. case $host in
  20. diff -Naur Python-3.8.0-orig/Makefile.pre.in Python-3.8.0/Makefile.pre.in
  21. --- Python-3.8.0-orig/Makefile.pre.in 2019-10-22 10:01:24.304584800 +0300
  22. +++ Python-3.8.0/Makefile.pre.in 2019-10-22 10:01:26.238988200 +0300
  23. @@ -327,7 +327,7 @@
  24. Python/context.o \
  25. Python/dynamic_annotations.o \
  26. Python/errors.o \
  27. - Python/frozenmain.o \
  28. + @PYTHON_OBJS_FROZENMAIN@ \
  29. Python/future.o \
  30. Python/getargs.o \
  31. Python/getcompiler.o \