1. 01 7月, 2009 1 次提交
  2. 29 8月, 2008 1 次提交
  3. 15 5月, 2008 1 次提交
    • T
      Move the "instr_time" typedef and associated macros into a new header · 3bc25384
      Tom Lane 提交于
      file portability/instr_time.h, and add a couple more macros to eliminate
      some abstraction leakage we formerly had.  Also update psql to use this
      header instead of its own copy of nearly the same code.
      
      This commit in itself is just code cleanup and shouldn't change anything.
      It lays some groundwork for the upcoming function-stats patch, though.
      3bc25384
  4. 18 3月, 2008 1 次提交
    • P
      Enable probes to work with Mac OS X Leopard and other OSes that will · a7b7b07a
      Peter Eisentraut 提交于
      support DTrace in the future.
      
      Switch from using DTRACE_PROBEn macros to the dynamically generated macros.
      Use "dtrace -h" to create a header file that contains the dynamically
      generated macros to be used in the source code instead of the DTRACE_PROBEn
      macros.  A dummy header file is generated for builds without DTrace support.
      
      Author: Robert Lor <Robert.Lor@sun.com>
      a7b7b07a
  5. 15 10月, 2007 1 次提交
  6. 11 9月, 2007 1 次提交
  7. 10 12月, 2005 1 次提交
  8. 26 3月, 2005 1 次提交
  9. 07 1月, 2005 1 次提交
  10. 18 11月, 2004 1 次提交
  11. 09 11月, 2004 1 次提交
  12. 03 11月, 2004 1 次提交
  13. 17 10月, 2004 1 次提交
  14. 08 10月, 2004 1 次提交
  15. 06 10月, 2004 1 次提交
    • B
      please find attached an alternate submission which addresses open item · 513e89b4
      Bruce Momjian 提交于
      "make pgxs install by default". It is up to the committers to chose.
      
      (1) there is only one "install" target. no more "install-all-headers".
          it simplifies/changes several makefiles.
      
      (2) the documentation reflects the change.
      
      (3) a minor fix on pgxs to use a nicer patch without a double slash.
      
      Fabien Coelho
      513e89b4
  16. 30 11月, 2003 1 次提交
    • P
      · 969685ad
      PostgreSQL Daemon 提交于
      $Header: -> $PostgreSQL Changes ...
      969685ad
  17. 26 11月, 2003 1 次提交
  18. 28 8月, 2001 1 次提交
    • P
      Include directory rearrangement · f5944af8
      Peter Eisentraut 提交于
      Client headers are no longer in a subdirectory, since they have been made
      namespace-clean.
      
      Internal libpq headers are in a private subdirectory.
      
      Server headers are in a private subdirectory.  pg_config has a new option
      to point there.
      f5944af8
  19. 24 8月, 2001 1 次提交
  20. 02 3月, 2001 1 次提交
  21. 21 2月, 2001 1 次提交
  22. 10 2月, 2001 1 次提交
    • T
      Restructure the key include files per recent pghackers discussion: there · d08741ea
      Tom Lane 提交于
      are now separate files "postgres.h" and "postgres_fe.h", which are meant
      to be the primary include files for backend .c files and frontend .c files
      respectively.  By default, only include files meant for frontend use are
      installed into the installation include directory.  There is a new make
      target 'make install-all-headers' that adds the whole content of the
      src/include tree to the installed fileset, for use by people who want to
      develop server-side code without keeping the complete source tree on hand.
      Cleaned up a whole lot of crufty and inconsistent header inclusions.
      d08741ea
  23. 21 10月, 2000 1 次提交
  24. 17 9月, 2000 1 次提交
    • P
      Support for DESTDIR make variable. This is used as in `make install · 335248c9
      Peter Eisentraut 提交于
      DESTDIR=/else/where' and prepends the value of DESTDIR to the full
      installation paths (e.g., /else/where/usr/local/pgsql/bin). This allows
      users to install the package into a location different from the one that
      was configured and hard-coded into various scripts, e.g., for creating
      binary packages.
      
      DESTDIR is in many cases preferrable over `make install
      prefix=/else/where' because
      
      a) `prefix' affects the path that is hard-coded into the files, which can
      lead to a `make install prefix=xxx' (as done by the regression test
      driver) corrupting the files in the source tree with wrong paths.
      
      b) it doesn't work at all if a directory was overridden to not depend on
      `prefix', e.g., --sysconfdir=/etc.
      
      (Updating the regression test driver to use DESTDIR is a separate
      undertaking.)
      
      See also autoconf@gnu.org, From: Akim Demaille <akim@epita.fr>, Date: 08
      Sep 2000 12:48:59 +0200, Message-ID:
      <mv4em2vb1lw.fsf@nostromo.lrde.epita.fr>, Subject: Re: HTML format
      documentation.
      335248c9
  25. 01 9月, 2000 1 次提交
  26. 20 7月, 2000 1 次提交
    • P
      Add distprep target to take some of the job of the release_prep script. · 32163099
      Peter Eisentraut 提交于
      The latter updated accordingly. Also add `dist' and `distcheck' targets
      to play with, but caveat packager.
      
      Updated backend/bootstrap and backend/parser makefile to make them
      marginally builddir aware and fix the usual set of things.
      
      Add rule to automatically remake config.h dependent on config.h.in and
      config.status. (Adopted from Autoconf manual and about every other
      package.) On a good day we should now have a complete and accurate set
      of dependencies throughout everything.
      32163099
  27. 07 7月, 2000 1 次提交
    • P
      Backend makefile cleanup. make maintainer-clean is now completely · f0b4ae69
      Peter Eisentraut 提交于
      functional.
      
      Handle include file installation in src/include/Makefile
      
      genbki.sh improvements: Don't substitute anything by config.status,
      instead pass in AWK and CPP through environment. Change calling
      convention to support named output files, so we get to see error
      messages on stderr.
      
      Rename bootstrap template files and install them into PREFIX/share.
      Update initdb to that effect and other readability improvements
      in initdb.
      f0b4ae69