1. 24 Şub, 2002 1 kayıt (commit)
  2. 16 Şub, 2002 1 kayıt (commit)
  3. 11 Şub, 2002 1 kayıt (commit)
  4. 01 Ock, 2002 1 kayıt (commit)
  5. 07 Ara, 2001 1 kayıt (commit)
    • Michael W. Hudson's avatar
      Fix for: · 54241138
      Michael W. Hudson yazdı
          [ #417634 ] configuring without C++ compiler name
      
      by checking that we're not about to try to compile C++ files with "yes".
      
      Now we wait for the system where the C++ compiler *is* called yes...
      54241138
  6. 06 Ara, 2001 2 kayıt (commit)
  7. 05 Ara, 2001 1 kayıt (commit)
  8. 04 Ara, 2001 1 kayıt (commit)
  9. 02 Ara, 2001 2 kayıt (commit)
  10. 14 Kas, 2001 1 kayıt (commit)
    • Jack Jansen's avatar
      OSX tests used specific version numbers to test for new features and · 418c3b1e
      Jack Jansen yazdı
      used the default Darwin/* for the old code. Reversed those tests so
      that compatibility code is in a switch leg with a specific version and
      newer systems take the default leg.
      
      This should allow Python to build on OSX 10.1.1 (which jumps from Darwin/1.4
      to Darwin/5.1 due to a new numbering scheme).
      418c3b1e
  11. 09 Kas, 2001 1 kayıt (commit)
  12. 31 Eki, 2001 1 kayıt (commit)
    • Jack Jansen's avatar
      Link the core with CoreServices, not with Carbon, and don't use any Carbon · 666b1e7e
      Jack Jansen yazdı
      routines. As of 10.1 using Carbon will crash Python if no window server is
      available (ssh connection, console mode, MacOSX Server). This fixes bug
      #466907.
      
      A result of this mod is that the default 8bit encoding on OSX is now ASCII,
      for the time being. Also, the extension modules that need the Carbon
      framework now explicitly include it in setup.py.
      666b1e7e
  13. 24 Eki, 2001 1 kayıt (commit)
  14. 21 Eki, 2001 1 kayıt (commit)
  15. 20 Eki, 2001 1 kayıt (commit)
  16. 19 Eki, 2001 1 kayıt (commit)
  17. 18 Eki, 2001 4 kayıt (commit)
  18. 15 Eki, 2001 2 kayıt (commit)
  19. 13 Eki, 2001 1 kayıt (commit)
  20. 08 Eki, 2001 1 kayıt (commit)
  21. 07 Eki, 2001 2 kayıt (commit)
  22. 04 Eki, 2001 1 kayıt (commit)
  23. 30 Eyl, 2001 1 kayıt (commit)
  24. 28 Eyl, 2001 1 kayıt (commit)
  25. 17 Eyl, 2001 1 kayıt (commit)
  26. 11 Eyl, 2001 1 kayıt (commit)
  27. 10 Eyl, 2001 2 kayıt (commit)
  28. 09 Eyl, 2001 1 kayıt (commit)
  29. 07 Eyl, 2001 1 kayıt (commit)
    • Jack Jansen's avatar
      (Slightly modified) patch by Steve Spicklemire to make Python build · a3891ea4
      Jack Jansen yazdı
      out of the box on OSX 10.1. Untested by me (except for not having adverse
      effects on 10.0.4) but it looks good, for now. Eventually we should not
      trigger on the darwin version but test for something, but until I have
      the time to install 10.1 myself I have no clue what to test on.
      
      It would be nice if this got in to the 2.2a3 distribution.
      a3891ea4
  30. 05 Eyl, 2001 3 kayıt (commit)
    • Guido van Rossum's avatar
      SF bug #427073: DLINCLDIR defined incorrectly (Skip Montanaro). · 98935bff
      Guido van Rossum yazdı
      I don't know what difference it makes, but '/' indeed makes less sense
      as an include dir than '.', so I'm changing the default.  Just so I
      can close the bug. ;-)
      98935bff
    • Guido van Rossum's avatar
      Changes to automatically enable large file support on some systems. · b8552160
      Guido van Rossum yazdı
      I believe this works on Linux (tested both on a system with large file
      support and one without it), and it may work on Solaris 2.7.
      
      The changes are twofold:
      
      (1) The configure script now boldly tries to set the two symbols that
          are recommended (for Solaris and Linux), and then tries a test
          script that does some simple seeking without writing.
      
      (2) The _portable_{fseek,ftell} functions are a little more systematic
          in how they try the different large file support options: first
          try fseeko/ftello, but only if off_t is large; then try
          fseek64/ftell64; then try hacking with fgetpos/fsetpos.
      
      I'm keeping my fingers crossed.  The meaning of the
      HAVE_LARGEFILE_SUPPORT macro is not at all clear.
      
      I'll see if I can get it to work on Windows as well.
      b8552160
    • Martin v. Löwis's avatar
      36546db7