1. 20 4月, 2004 1 次提交
    • P
      · 41fa9e9b
      PostgreSQL Daemon 提交于
      Remove all of the libpgtcl and pgtclsh files, including all references to
      them within the various makefiles
      
      with_tcl is still required for the src/pl/tcl language
      41fa9e9b
  2. 11 3月, 2004 1 次提交
  3. 10 2月, 2004 1 次提交
    • T
      Centralize implementation of delay code by creating a pg_usleep() · 58f337a3
      Tom Lane 提交于
      subroutine in src/port/pgsleep.c.  Remove platform dependencies from
      miscadmin.h and put them in port.h where they belong.  Extend recent
      vacuum cost-based-delay patch to apply to VACUUM FULL, ANALYZE, and
      non-btree index vacuuming.
      
      By the way, where is the documentation for the cost-based-delay patch?
      58f337a3
  4. 02 2月, 2004 1 次提交
    • B
      Briefly, · e5e5a323
      Bruce Momjian 提交于
       * configure + Makefile changes
       * shared memory attaching in EXEC_BACKEND case (+ minor fix for apparent
      cygwin bug under cygwin/EXEC_BACKEND case only)
       * PATH env var separator differences
       * missing win32 rand functions added
       * placeholder replacements for sync etc under port.h
      
      
      To those who are really interested, and there are a few of you: the attached
      patch + file will allow the source base to be compiled (and, for some
      definition, "run") under MingW, with the following caveats (I wanted to
      first properly fix all but the last of these, but y'all won't quit asking
      for a patch :-):
      
              * child death: SIGCHLD not yet sent, so as a minimum, you'll need to
      put in some sort of delay after StartupDatabase, and handle setting
      StartupPID to 0 etc (ie. the stuff the reaper() signal function is supposed
      to do)
      
              * dirmod.c: comment out the elog calls
      
              * dfmgr.c: some hackage required to substitute_libpath_macro
      
              * slru/xact.c: comment out the errno checking after the readdir
      (fixed by next version of MingW)
      
      Again, this is only if you *really* want to see postgres compile and start,
      and is a nice leg-up for working on the other Win32 TODO list items. Just
      don't expect too much else from it at this point...
      
      
      Claudio Natoli
      e5e5a323
  5. 20 1月, 2004 1 次提交
  6. 20 12月, 2003 1 次提交
  7. 30 11月, 2003 1 次提交
    • P
      · 969685ad
      PostgreSQL Daemon 提交于
      $Header: -> $PostgreSQL Changes ...
      969685ad
  8. 28 9月, 2003 1 次提交
  9. 27 9月, 2003 1 次提交
  10. 07 9月, 2003 1 次提交
  11. 02 9月, 2003 1 次提交
  12. 08 8月, 2003 2 次提交
  13. 14 6月, 2003 1 次提交
  14. 28 5月, 2003 1 次提交
  15. 12 5月, 2003 1 次提交
  16. 05 4月, 2003 1 次提交
  17. 29 3月, 2003 1 次提交
  18. 06 1月, 2003 1 次提交
  19. 05 1月, 2003 1 次提交
  20. 31 12月, 2002 1 次提交
  21. 10 11月, 2002 1 次提交
    • B
      I am attaching a patch file that will replace the previous one. It only · c600a6ac
      Bruce Momjian 提交于
      contains the patches to Makefile.global.in and Makefile.unixware.  The
      Makefile.unixware patch has been updated to include the contents of
      LD_LIBRARY_PATH, if present, to the -rpath (-R) option.  This change
      will  simplify configuring and building PostgreSQL on systems that
      support  LD_LIBRARY_PATH.  You can set LD_LIBRARY_PATH to include all
      the directorys  you want to have searched for additional libraries, run
      configure, then run  make.  The paths in LD_LIBRARY_PATH will then be
      embedded in the executables  via the -rpath (-R) option to the linker,
      and so will not require  LD_LIBRARY_PATH in order to run.
      
      Billy G. Allie
      c600a6ac
  22. 05 9月, 2002 1 次提交
  23. 04 9月, 2002 1 次提交
  24. 23 8月, 2002 1 次提交
    • M
      · 5a303f87
      Marc G. Fournier 提交于
      Remove all traces of the ODBC driver, which is now on GBorg as the psqlodbc
      project ...
      5a303f87
  25. 28 7月, 2002 1 次提交
  26. 20 7月, 2002 1 次提交
  27. 18 7月, 2002 1 次提交
  28. 16 7月, 2002 1 次提交
  29. 29 5月, 2002 1 次提交
  30. 25 5月, 2002 1 次提交
  31. 15 4月, 2002 1 次提交
  32. 11 4月, 2002 1 次提交
  33. 30 3月, 2002 1 次提交
  34. 13 3月, 2002 1 次提交
    • P
      Move · f362dcec
      Peter Eisentraut 提交于
        src/GNUmakefile.in to src/Makefile
      and
        src/backend/port/Makefile.in to src/backend/port/Makefile
      
      All configure substitutions are now done in Makefile.global.
      f362dcec
  35. 06 3月, 2002 1 次提交
    • B
      At this moment, --enable-debug adds debugging information to most of the · 0416641b
      Bruce Momjian 提交于
      parts o f postgresql. The jdbc drivers are never compiled with debugging
      support. This p atch make sure that debugging information is added to
      the jdbc jar when the --en able-debug is added. This was usefull for me
      for debugging some java jdbc poolin g objects but this might perhaps be
      usefull for other people too?
      
      Dries Verachtert
      0416641b
  36. 21 12月, 2001 1 次提交
  37. 13 10月, 2001 1 次提交
  38. 23 9月, 2001 1 次提交
    • P
      Provide some initial support for building the ODBC driver for · 364a7ebe
      Peter Eisentraut 提交于
      an already installed iODBC or unixODBC driver manager.  In particular,
      use the include files provided by the driver manager over our own,
      and use the odbcinst library of the driver manager rather than gpps.c.
      
      Migrate portability sections common to several files into psqlodbc.h.
      364a7ebe
  39. 18 9月, 2001 1 次提交