1. 06 Mar, 2001 2 kayıt (commit)
  2. 04 Mar, 2001 1 kayıt (commit)
  3. 27 Şub, 2001 2 kayıt (commit)
  4. 21 Şub, 2001 1 kayıt (commit)
  5. 19 Şub, 2001 2 kayıt (commit)
    • Neil Schemenauer's avatar
      Revert SF patch #103655. Martin Löwis says: · 95052725
      Neil Schemenauer yazdı
      -shared does the following things:
      - invoke the linker with -G -dy -z text (the latter only if
        -mimpure-text was not given)
      - drop crt1.o from the list of objects being linked
      - drop -lc from the list of libraries being linked
      OTOH, -G is just passed through to the linker.
      
      The things that -shared does are necessary: crt1.o defines _start, and
      requires main, so it should not be present in a shared library.
      Likewise, -z text should be used to detect position-dependent code at
      compile time.
      95052725
    • Neil Schemenauer's avatar
      Use -G option for linking shared libraries on Solaris (SF patch #103656). · 66252167
      Neil Schemenauer yazdı
      Compile shared object files using -fPIC option when using GCC on Solaris (SF
      patch #103865).  Closes bug #132783.  Move config.c generated by makesetup to
      the Modules directory.
      66252167
  6. 16 Şub, 2001 2 kayıt (commit)
  7. 09 Şub, 2001 1 kayıt (commit)
  8. 27 Ock, 2001 2 kayıt (commit)
  9. 26 Ock, 2001 2 kayıt (commit)
  10. 24 Ock, 2001 1 kayıt (commit)
    • Neil Schemenauer's avatar
      - build now happens in toplevel directory, add subdir paths to filenames · 55f0cf33
      Neil Schemenauer yazdı
      - change EXE to EXTEXT, there is an autoconf macro for it
      - use PROG_INSTALL macro rather than always using install-sh
      - add option to disable signal module (simplifies the makefile)
      - create subdirs for object files (when building out of src dir)
      - don't generate subdir makefiles
      - generate "boot" makefile
      55f0cf33
  11. 23 Ock, 2001 1 kayıt (commit)
  12. 17 Ock, 2001 4 kayıt (commit)
  13. 16 Ock, 2001 1 kayıt (commit)
  14. 15 Ock, 2001 1 kayıt (commit)
  15. 10 Ock, 2001 4 kayıt (commit)
  16. 08 Ock, 2001 1 kayıt (commit)
  17. 05 Ock, 2001 1 kayıt (commit)
  18. 13 Ara, 2000 1 kayıt (commit)
  19. 29 Kas, 2000 1 kayıt (commit)
  20. 08 Kas, 2000 1 kayıt (commit)
  21. 07 Kas, 2000 1 kayıt (commit)
    • Greg Ward's avatar
      Fix for SF bug #117606: · a1c4da24
      Greg Ward yazdı
        - when compiling with GCC on Solaris, use "$(CC) -shared" instead
          of "$(CC) -G" to generate .so files
        - when compiling with GCC on any platform, add "-fPIC" to OPT
          (without this, "$(CC) -shared" dies horribly)
      a1c4da24
  22. 03 Kas, 2000 1 kayıt (commit)
    • Thomas Wouters's avatar
      Move our own getopt() implementation to _PyOS_GetOpt(), and use it · 2cffc7d4
      Thomas Wouters yazdı
      regardless of whether the system getopt() does what we want. This avoids the
      hassle with prototypes and externs, and the check to see if the system
      getopt() does what we want. Prefix optind, optarg and opterr with _PyOS_ to
      avoid name clashes. Add new include file to define the right symbols. Fix
      Demo/pyserv/pyserv.c to include getopt.h itself, instead of relying on
      Python to provide it.
      2cffc7d4
  23. 02 Kas, 2000 1 kayıt (commit)
  24. 30 Eki, 2000 1 kayıt (commit)
  25. 26 Eki, 2000 1 kayıt (commit)
  26. 16 Eki, 2000 1 kayıt (commit)
  27. 12 Eki, 2000 1 kayıt (commit)
    • Fred Drake's avatar
      When we know the compiler is GCC, always add the -Wall and · f4670e96
      Fred Drake yazdı
      -Wstrict-prototypes options.  This will make it a lot easier to keep
      warnings under control in the first place in the future.
      
      There is one known warning at this time, caught by the -Wstrict-prototypes
      option.  In Modules/main.c, the declaration of getopt() without parameters
      gets a complaint (rightly) that it is not a proper prototype.  The lack of
      a complete prototype information should be corrected when the right
      portability conditions have been identified.
      
      Approved by the Guido.
      f4670e96
  28. 09 Eki, 2000 1 kayıt (commit)