1. 06 Oct, 2004 3 commits
  2. 05 Oct, 2004 1 commit
  3. 01 Oct, 2004 1 commit
  4. 18 Sep, 2004 1 commit
  5. 28 Aug, 2004 1 commit
    • Bruce Momjian's avatar
      > Am Dienstag, 17. August 2004 14:26 schrieb Fabien COELHO: · f7587aeb
      Bruce Momjian authored
      > > The patch adds missing the "libpgport.a" file to the installation under
      > > "install-all-headers". It is needed by some contribs. I install the
      > > library in "pkglibdir", but I was wondering whether it should be "libdir"?
      
      Please find attached a small patch against current CVS head that fixes
      pgport library installation so that it goes to libdir instead of
      pkglibdir. It works for me.
      
      Fabien Coelho
      f7587aeb
  6. 20 Aug, 2004 1 commit
    • Bruce Momjian's avatar
      > Please find enclose a submission to fix these problems. · ee85595d
      Bruce Momjian authored
      >
      > The patch adds missing the "libpgport.a" file to the installation under
      > "install-all-headers". It is needed by some contribs. I install the
      > library in "pkglibdir", but I was wondering whether it should be "libdir"?
      > I was wondering also whether it would make sense to have a "libpgport.so"?
      >
      > It fixes various macros which are used by contrib makefiles, especially
      > libpq_*dir and LDFLAGS when used under PGXS. It seems to me that they are
      > needed to
      >
      > It adds the ability to test and use PGXS with contribs, with "make
      > USE_PGXS=1". Without the macro, this is exactly as before, there should be
      > no difference, esp. wrt the vpath feature that seemed broken by previous
      > submission. So it should not harm anybody, and it is useful at least to me.
      >
      > It fixes some inconsistencies in various contrib makefiles
      > (useless override, ":=" instead of "=").
      
      Fabien COELHO
      ee85595d
  7. 15 Aug, 2004 1 commit
  8. 01 Aug, 2004 1 commit
  9. 30 Jul, 2004 1 commit
  10. 02 Jun, 2004 1 commit
  11. 23 May, 2004 1 commit
  12. 22 May, 2004 1 commit
    • Tom Lane's avatar
      Use wide-character library routines, if available, for upper/lower/initcap · 39838694
      Tom Lane authored
      functions.  This allows these functions to work correctly with Unicode and
      other multibyte encodings.  Per prior discussion.
      
      Also, revert my earlier change to move installation path mashing from
      Makefile.global to configure.  Turns out not to work well because configure
      script is working with unexpanded variables, and so fails to match in
      cases where it should match.
      39838694
  13. 21 May, 2004 2 commits
  14. 14 May, 2004 1 commit
  15. 13 May, 2004 1 commit
  16. 11 May, 2004 1 commit
    • Bruce Momjian's avatar
      As part of the work for making relocatable installs, I have re-factored · fda15b35
      Bruce Momjian authored
      all the code that looks for other binaries.  I move FindExec into
      port/exec.c (and renamed it to find_my_binary()).  I also added
      find_other_binary that looks for another binary in the same directory as
      the calling program, and checks the version string.
      
      The only behavior change was that initdb and pg_dump would look in the
      hard-coded bindir directory if it can't find the requested binary in the
      same directory as the caller.  The new code throws an error.  The old
      behavior seemed too error prone for version mismatches.
      fda15b35
  17. 07 May, 2004 1 commit
    • Tom Lane's avatar
      Solve the 'Turkish problem' with undesirable locale behavior for case · 0bd61548
      Tom Lane authored
      conversion of basic ASCII letters.  Remove all uses of strcasecmp and
      strncasecmp in favor of new functions pg_strcasecmp and pg_strncasecmp;
      remove most but not all direct uses of toupper and tolower in favor of
      pg_toupper and pg_tolower.  These functions use the same notions of
      case folding already developed for identifier case conversion.  I left
      the straight locale-based folding in place for situations where we are
      just manipulating user data and not trying to match it to built-in
      strings --- for example, the SQL upper() function is still locale
      dependent.  Perhaps this will prove not to be what's wanted, but at
      the moment we can initdb and pass regression tests in Turkish locale.
      0bd61548
  18. 30 Apr, 2004 2 commits
  19. 23 Apr, 2004 1 commit
  20. 20 Apr, 2004 1 commit
    • PostgreSQL Daemon's avatar
      · 41fa9e9b
      PostgreSQL Daemon authored
      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
  21. 10 Mar, 2004 1 commit
  22. 10 Feb, 2004 1 commit
    • Tom Lane's avatar
      Centralize implementation of delay code by creating a pg_usleep() · 58f337a3
      Tom Lane authored
      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
  23. 02 Feb, 2004 1 commit
    • Bruce Momjian's avatar
      Briefly, · e5e5a323
      Bruce Momjian authored
       * 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
  24. 19 Jan, 2004 1 commit
  25. 19 Dec, 2003 1 commit
  26. 29 Nov, 2003 1 commit
    • PostgreSQL Daemon's avatar
      · 969685ad
      PostgreSQL Daemon authored
      $Header: -> $PostgreSQL Changes ...
      969685ad
  27. 27 Sep, 2003 2 commits
  28. 07 Sep, 2003 1 commit
  29. 01 Sep, 2003 1 commit
  30. 08 Aug, 2003 2 commits
  31. 14 Jun, 2003 1 commit
  32. 27 May, 2003 1 commit
  33. 11 May, 2003 1 commit
  34. 04 Apr, 2003 1 commit