Skip to content
Snippets Groups Projects
  1. Jun 08, 2016
    • Alvaro Herrera's avatar
      nls-global.mk: search build dir for source files, too · 736c95ca
      Alvaro Herrera authored
      In VPATH builds, the build directory was not being searched for files in
      GETTEXT_FILES, leading to failure to construct the .pot files.  This has
      bit me all along, but never hard enough to get it fixed; I suppose not a
      lot of people uses VPATH and NLS-enabled builds, and those that do,
      don't do "make update-po" often.
      
      This is a longstanding problem, so backpatch all the way back.
      736c95ca
  2. Mar 19, 2014
    • Alvaro Herrera's avatar
      Setup error context callback for transaction lock waits · f88d4cfc
      Alvaro Herrera authored
      With this in place, a session blocking behind another one because of
      tuple locks will get a context line mentioning the relation name, tuple
      TID, and operation being done on tuple.  For example:
      
      LOG:  process 11367 still waiting for ShareLock on transaction 717 after 1000.108 ms
      DETAIL:  Process holding the lock: 11366. Wait queue: 11367.
      CONTEXT:  while updating tuple (0,2) in relation "foo"
      STATEMENT:  UPDATE foo SET value = 3;
      
      Most usefully, the new line is displayed by log entries due to
      log_lock_waits, although of course it will be printed by any other log
      message as well.
      
      Author: Christian Kruse, some tweaks by Álvaro Herrera
      Reviewed-by: Amit Kapila, Andres Freund, Tom Lane, Robert Haas
      f88d4cfc
  3. Oct 11, 2013
    • Peter Eisentraut's avatar
      Remove maintainer-check target, fold into normal build · 5dd41f35
      Peter Eisentraut authored
      make maintainer-check was obscure and rarely called in practice, and
      many breakages were missed.  Fold everything that make maintainer-check
      used to do into the normal build.  Specifically:
      
      - Call duplicate_oids when genbki.pl is called.
      
      - Check for tabs in SGML files when the documentation is built.
      
      - Run msgfmt with the -c option during the regular build.  Add an
        additional configure check to see whether we are using the GNU
        version.  (make maintainer-check probably used to fail with non-GNU
        msgfmt.)
      
      Keep maintainer-check as around as phony target for the time being in
      case anyone is calling it.  But it won't do anything anymore.
      5dd41f35
  4. Dec 14, 2012
  5. Apr 24, 2012
  6. Apr 10, 2012
  7. Apr 05, 2012
  8. Apr 02, 2012
  9. Mar 28, 2012
  10. Dec 27, 2011
  11. Jun 26, 2011
  12. Oct 14, 2010
  13. Sep 20, 2010
  14. May 13, 2010
  15. Aug 27, 2009
    • Peter Eisentraut's avatar
      Update of install-sh, mkinstalldirs, and associated configury · 9d182ef0
      Peter Eisentraut authored
      Update install-sh to that from Autoconf 2.63, plus our Darwin-specific
      changes (which I simplified a bit).  install-sh is now able to install
      multiple files in one run, so we could simplify our makefiles sometime.
      
      install-sh also now has a -d option to create directories, so we don't need
      mkinstalldirs anymore.
      
      Use AC_PROG_MKDIR_P in configure.in, so we can use mkdir -p when available
      instead of install-sh -d.  For consistency with the rest of the world,
      the corresponding make variable has been renamed from $(mkinstalldirs) to
      $(MKDIR_P).
      9d182ef0
  16. Jan 20, 2009
  17. Jan 15, 2009
  18. Jan 09, 2009
  19. Jan 02, 2009
  20. Dec 11, 2008
  21. May 17, 2008
  22. Apr 05, 2006
  23. Dec 09, 2005
  24. Jun 01, 2004
  25. Nov 29, 2003
    • PostgreSQL Daemon's avatar
      · 969685ad
      PostgreSQL Daemon authored
      $Header: -> $PostgreSQL Changes ...
      969685ad
  26. Sep 15, 2003
  27. Sep 03, 2002
  28. Aug 30, 2002
  29. Aug 21, 2002
  30. Nov 29, 2001
  31. Jul 15, 2001
  32. Jun 30, 2001
  33. Jun 02, 2001
    • Peter Eisentraut's avatar
      Native Language Support (NLS) · e5420364
      Peter Eisentraut authored
      Use --enable-nls to turn it on; see installation instructions for details.
      See developer's guide how to make use of it in programs and how to add
      translations.
      
      psql sources have been almost fully prepared and an incomplete German
      translation has been provided.  In the backend, only elog() calls are
      currently translatable, and the provided German translation file is more
      of a placeholder.
      e5420364
Loading