1. 26 Dec, 2004 1 commit
    • Jack Jansen's avatar
      After discussion on the PythonMac-SIG it was decided that it is better · 9c20e5e7
      Jack Jansen authored
      to make using "-undefined dynamic_lookup" for linking extensions more
      automatic on 10.3 and later. So if we're on that platform and
      MACOSX_DEPLOYMENT_TARGET is not set we now set it to the current OSX
      version during configure. Additionally, distutils will pick up the
      configure-time value by default.
      
      Will backport.
      9c20e5e7
  2. 22 Dec, 2004 1 commit
  3. 02 Dec, 2004 1 commit
  4. 01 Dec, 2004 1 commit
  5. 28 Nov, 2004 1 commit
  6. 24 Nov, 2004 1 commit
  7. 10 Nov, 2004 2 commits
  8. 27 Oct, 2004 1 commit
  9. 14 Oct, 2004 1 commit
  10. 13 Oct, 2004 3 commits
  11. 17 Sep, 2004 2 commits
  12. 12 Sep, 2004 1 commit
  13. 10 Sep, 2004 2 commits
  14. 29 Aug, 2004 1 commit
  15. 26 Aug, 2004 1 commit
  16. 25 Aug, 2004 3 commits
  17. 17 Aug, 2004 1 commit
  18. 04 Aug, 2004 1 commit
  19. 03 Aug, 2004 3 commits
  20. 02 Aug, 2004 1 commit
  21. 28 Jul, 2004 1 commit
  22. 23 Jul, 2004 3 commits
  23. 21 Jul, 2004 1 commit
  24. 19 Jul, 2004 2 commits
  25. 18 Jul, 2004 1 commit
  26. 16 Jul, 2004 1 commit
  27. 14 Jul, 2004 1 commit
  28. 06 Jul, 2004 1 commit
    • Thomas Heller's avatar
      Fix SF#983164. · 84314dfe
      Thomas Heller authored
      Patch from Mark Hammond:
      
      bdist_wininst attempts to use the correct MSVC runtime for the current
      version of Python. This doesn't work correctly when --target-version
      is set. In that case, bdist_wininst still uses the *current*
      sys.version (ie, 2.4) rather than the version specified as
      --target-version. Thus, the msvc7 runtime based executable stub is
      *always* used.
      
      This patch "hard-codes" knowledge of earlier Python versions,
      providing the correct result when Python 2.4 is used to build Python
      2.3 and earlier distributions.
      
      Remove the short variant (-v) of the --target-version command line
      options, it conflicts with the --verbose/-v standard distutils switch.
      84314dfe