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. 18 12月, 2003 1 次提交
  3. 30 11月, 2003 1 次提交
    • P
      · 969685ad
      PostgreSQL Daemon 提交于
      $Header: -> $PostgreSQL Changes ...
      969685ad
  4. 04 9月, 2002 1 次提交
  5. 31 8月, 2002 1 次提交
  6. 17 8月, 2002 1 次提交
  7. 21 6月, 2002 1 次提交
  8. 04 4月, 2002 1 次提交
    • B
      Authentication improvements: · 43a3543a
      Bruce Momjian 提交于
      A new pg_hba.conf column, USER
      Allow specifiction of lists of users separated by commas
      Allow group names specified by +
      Allow include files containing lists of users specified by @
      Allow lists of databases, and database files
      Allow samegroup in database column to match group name matching dbname
      Removal of secondary password files
      Remove pg_passwd utility
      Lots of code cleanup in user.c and hba.c
      New data/global/pg_pwd format
      New data/global/pg_group file
      43a3543a
  9. 19 2月, 2001 1 次提交
  10. 11 10月, 2000 1 次提交
  11. 26 9月, 2000 1 次提交
  12. 01 9月, 2000 1 次提交
  13. 26 8月, 2000 1 次提交
  14. 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
  15. 02 7月, 2000 1 次提交
  16. 01 7月, 2000 1 次提交
  17. 27 6月, 2000 1 次提交
  18. 21 1月, 2000 1 次提交
  19. 20 1月, 2000 1 次提交
  20. 19 1月, 2000 1 次提交
  21. 22 12月, 1999 1 次提交
    • T
      Add installation of pg_ctl · b680d5be
      Tatsuo Ishii 提交于
      Locate path of postmaster in a portable way (stolen from initdb)
      Add postmaster.opts.default.sample which should be copied into
      $PGLIB in the installtion process. Also, it will be installed into
      $PGDATA while initdb is running.
      b680d5be
  22. 08 12月, 1999 1 次提交
  23. 06 12月, 1999 1 次提交
    • B
      I cleaned those out as well (the echo -n "bug" was in there ;) and moved · ed62104e
      Bruce Momjian 提交于
      them into the scripts dir. I also added a --list option to show already
      installed languages.
      
      This whole moving and renaming totally confused CVS and my checked out
      copy got completely fried last night. When you apply the source patch,
      please make sure that all the directories src/bin/{create|destroy}* as
      well as vacuumdb, cleardbdir are gone and that all the scripts (7) are
      in
      scripts/.
      
      Meanwhile I am still puzzled about what happened with the docs patch.
      Because I don't know what you got now, the second attachment contains
      the
      files
      
      ref/allfiles.sgml
      ref/commands.sgml
      ref/createlang.sgml
      ref/droplang.sgml
      doc/src/sgml/Makefile
      
      Peter Eisentraut                  Sernanders väg 10:115
      ed62104e
  24. 04 12月, 1999 1 次提交
  25. 21 5月, 1999 1 次提交
  26. 19 12月, 1998 1 次提交
    • B
      Here are descriptions: · 3d39ea73
      Bruce Momjian 提交于
      - the first patch is just to preven listing the perl warning in the
        make output unless it is actually emitted by the make.  this may
        prevent new users from being confused by the warning in their output
      
      - the second patch (to 2 files) just enables building/installing
        pgaccess if TCL and TK are available.  a Makefile is created to do
        this, but you may wish to change the heading information in it since
        I just copied another Makefile to use as a template.
      
      I hope these make it into 6.4.1.
      
      Cheers,
      Brook
      3d39ea73
  27. 14 11月, 1998 1 次提交
  28. 26 7月, 1998 1 次提交
    • M
      · 5979d738
      Marc G. Fournier 提交于
      From: t-ishii@sra.co.jp
      
      As Bruce mentioned, this is due to the conflict among changes we made.
      Included patches should fix the problem(I changed all MB to
      MULTIBYTE). Please let me know if you have further problem.
      
      P.S. I did not include pathces to configure and gram.c to save the
      file size(configure.in and gram.y modified).
      5979d738
  29. 24 7月, 1998 1 次提交
    • M
      · bf00bbb0
      Marc G. Fournier 提交于
      I really hope that I haven't missed anything in this one...
      
      From: t-ishii@sra.co.jp
      
      Attached are patches to enhance the multi-byte support.  (patches are
      against 7/18 snapshot)
      
      * determine encoding at initdb/createdb rather than compile time
      
      Now initdb/createdb has an option to specify the encoding. Also, I
      modified the syntax of CREATE DATABASE to accept encoding option. See
      README.mb for more details.
      
      For this purpose I have added new column "encoding" to pg_database.
      Also pg_attribute and pg_class are changed to catch up the
      modification to pg_database.  Actually I haved added pg_database_mb.h,
      pg_attribute_mb.h and pg_class_mb.h. These are used only when MB is
      enabled. The reason having separate files is I couldn't find a way to
      use ifdef or whatever in those files. I have to admit it looks
      ugly. No way.
      
      * support for PGCLIENTENCODING when issuing COPY command
      
      commands/copy.c modified.
      
      * support for SQL92 syntax "SET NAMES"
      
      See gram.y.
      
      * support for LATIN2-5
      * add UNICODE regression test case
      * new test suite for MB
      
      New directory test/mb added.
      
      * clean up source files
      
      Basic idea is to have MB's own subdirectory for easier maintenance.
      These are include/mb and backend/utils/mb.
      bf00bbb0
  30. 06 4月, 1998 2 次提交
    • B
      Makefile cleanup./ · c61846e5
      Bruce Momjian 提交于
      c61846e5
    • B
      Hi, · 1e801a8f
      Bruce Momjian 提交于
      Attached you'll find a (big) patch that fixes make dep and make
      depend in all Makefiles where I found it to be appropriate.
      
      It also removes the dependency in Makefile.global for NAMEDATALEN
      and OIDNAMELEN by making backend/catalog/genbki.sh and bin/initdb/initdb.sh
      a little smarter.
      
      This no longer requires initdb.sh that is turned into initdb with
      a sed script when installing Postgres, hence initdb.sh should be
      renamed to initdb (after the patch has been applied :-) )
      
      This patch is against the 6.3 sources, as it took a while to
      complete.
      
      Please review and apply,
      
      Cheers,
      
      Jeroen van Vianen
      1e801a8f
  31. 07 11月, 1997 1 次提交
  32. 31 10月, 1997 1 次提交
  33. 26 8月, 1997 2 次提交
  34. 26 4月, 1997 1 次提交
  35. 13 11月, 1996 1 次提交
  36. 11 11月, 1996 1 次提交
  37. 13 8月, 1996 1 次提交
    • M
      I have attached a minor update for the Postgres make files. This update · ca5db6ca
      Marc G. Fournier 提交于
      does 2 things:
      
      1) Make it hard to not notice the make failed.  (As you recall, someone on
         the mailing list had this problem.  I've had it to some extent myself).
      
          The 1.02 make files continue with the next subdirectory when a make
          in a subdirectory fails.  The patch makes the make stop in the
          conventional way when a submake fails.  It also adds a reassuring message
          when the make succeeds and adds a note to the INSTALL file to expect it.
      
      2) Include loader flags on all invocations of the linker.
      
         The 1.02 make files omit the $(LDFLAGS) on some of the linker invocations.
         On my system, I need one of those flags just to make it invoke the proper
         version of the compiler/linker, so LDFLAGS has to be everywhere.
      
      Submitted by: Bryan Henderson <bryanh@giraffe.netgate.net>
      ca5db6ca
  38. 25 7月, 1996 1 次提交