1. 20 Dec, 2000 1 commit
  2. 12 Dec, 2000 1 commit
  3. 11 Nov, 2000 1 commit
  4. 15 Oct, 2000 1 commit
  5. 14 Oct, 2000 5 commits
  6. 12 Oct, 2000 1 commit
  7. 03 Oct, 2000 4 commits
  8. 02 Oct, 2000 5 commits
  9. 01 Oct, 2000 2 commits
  10. 30 Sep, 2000 13 commits
  11. 29 Sep, 2000 1 commit
    • Thomas Heller's avatar
      Removed the extra_dirs and path_file metadata options. · 96979143
      Thomas Heller authored
      They are unneeded: All this stuff is already done by the
      install command which is run by bdist_wininst.
      
      One bug has been fixed:
      The root of the fake install tree is install.install_purelib,
      not install.install_lib!
      They are different if the extra_path option is used in
      the setup function.
      
      Rebuild after the changes to wininst.exe.
      96979143
  12. 28 Sep, 2000 1 commit
    • Thomas Heller's avatar
      Removed the implib_dir instance variable because it is unused. · b0ce6a98
      Thomas Heller authored
      Removed get_ext_libname() because it is unused.
      
      Fixed get_libraries() to append an '_d' to the python debug
      import library. If MSVC is used, do not add 'pythonxx.lib' to
      the list of libraries, because this is handled better
      by a pragma in config.h.
      
      This should fix bug #115595, but it needs some more testing.
      b0ce6a98
  13. 27 Sep, 2000 4 commits
    • Greg Ward's avatar
      Bump version to 1.0pre. · 117c5cbf
      Greg Ward authored
      117c5cbf
    • Greg Ward's avatar
      Remove deprecation warnings on old 'link_*()' methods, ie. they're not · a50a92cb
      Greg Ward authored
      deprecated after all.  But now they're only implemented once, instead
      of N times.
      a50a92cb
    • Greg Ward's avatar
      Big patch from Rene Liebscher to simplify the CCompiler API and · 5937fb64
      Greg Ward authored
      implementations.  Details:
        * replace 'link_shared_object()', 'link_shared_lib()', and
          'link_executable()' with 'link()', which is (roughly)
          the union of the three methods it replaces
        * in all implementation classes (UnixCCompiler, MSVCCompiler, etc.),
          ditch the old 'link_*()' methods and replace them with 'link()'
        * in the abstract base class (CCompiler), add the old 'link_*()'
          methods as wrappers around the new 'link()' (they also print
          a warning of the deprecated interface)
      
      Also increases consistency between MSVCCompiler and BCPPCompiler,
      hopefully to make it easier to factor out the mythical WindowsCCompiler
      class.  Details:
        * use 'self.linker' instead of 'self.link'
        * add ability to compile resource files to BCPPCompiler
        * added (redundant?) 'object_filename()' method to BCPPCompiler
        * only generate a .def file if 'export_symbols' defined
      5937fb64
    • Greg Ward's avatar
      Bump version to 0.9.4. · 3baf36ca
      Greg Ward authored
      3baf36ca