1. 04 2月, 2001 1 次提交
  2. 29 1月, 2001 1 次提交
    • M
      · 72401a44
      Marc G. Fournier 提交于
      update configure to beta4
      
      Install a ChangeLog file from beta3->beta4
      72401a44
  3. 23 1月, 2001 1 次提交
    • T
      Remove rangechecks on errno; just call strerror unconditionally. This · e9c936ff
      Tom Lane 提交于
      eliminates a raft of portability issues, including whether sys_nerr
      exists, whether the platform has any valid negative errnos, etc.  The
      downside is minimal: errno shouldn't ever contain an invalid value anyway,
      and if it does, reasonably modern versions of strerror will not choke.
      This rangecheck idea seemed good at the time, but it's clearly a net loss,
      and I apologize to all concerned for having ever put it in.
      e9c936ff
  4. 21 1月, 2001 1 次提交
  5. 10 1月, 2001 1 次提交
  6. 09 1月, 2001 1 次提交
    • P
      · 460a9f8a
      PostgreSQL Daemon 提交于
      jump version to beta3 ... beta2 was created and pulled due to a couple of
      large-ish bugs that Tom and Vadim were able to fix, but to avoid any
      confusion, beta2 was removed ... and for tag'ng purposes, beta3 is being
      created ...
      460a9f8a
  7. 07 1月, 2001 1 次提交
    • P
      · 6781aa47
      PostgreSQL Daemon 提交于
      tag configure as beta2 ..
      6781aa47
  8. 05 1月, 2001 1 次提交
  9. 03 1月, 2001 1 次提交
  10. 02 1月, 2001 1 次提交
  11. 30 12月, 2000 1 次提交
  12. 28 12月, 2000 1 次提交
    • T
      Fix portability problems recently exposed by regression tests on Alphas. · 8609d4ab
      Tom Lane 提交于
      1. Distinguish cases where a Datum representing a tuple datatype is an OID
      from cases where it is a pointer to TupleTableSlot, and make sure we use
      the right typlen in each case.
      2. Make fetchatt() and related code support 8-byte by-value datatypes on
      machines where Datum is 8 bytes.  Centralize knowledge of the available
      by-value datatype sizes in two macros in tupmacs.h, so that this will be
      easier if we ever have to do it again.
      8609d4ab
  13. 16 12月, 2000 1 次提交
  14. 07 12月, 2000 1 次提交
    • M
      · db0de224
      Marc G. Fournier 提交于
      update VERSION to 7.1beta1..
      db0de224
  15. 30 11月, 2000 1 次提交
    • T
      Get rid of not-very-portable fcntl(F_SETLK) mechanism for locking the Unix · 792b0f46
      Tom Lane 提交于
      socket file, in favor of having an ordinary lockfile beside the socket file.
      Clean up a few robustness problems in the lockfile code.  If postmaster is
      going to reject a connection request based on database state, it will now
      tell you so before authentication exchange not after.  (Of course, a failure
      after is still possible if conditions change meanwhile, but this makes life
      easier for a yet-to-be-written pg_ping utility.)
      792b0f46
  16. 27 11月, 2000 1 次提交
  17. 22 11月, 2000 1 次提交
  18. 20 11月, 2000 1 次提交
  19. 10 11月, 2000 1 次提交
  20. 07 11月, 2000 1 次提交
  21. 06 11月, 2000 1 次提交
  22. 04 11月, 2000 2 次提交
  23. 01 11月, 2000 2 次提交
  24. 30 10月, 2000 1 次提交
  25. 28 10月, 2000 1 次提交
  26. 26 10月, 2000 1 次提交
  27. 25 10月, 2000 1 次提交
  28. 24 10月, 2000 2 次提交
  29. 23 10月, 2000 1 次提交
  30. 22 10月, 2000 1 次提交
    • P
      Move DLSUFFIX, AROPT, and CFLAGS_SL settings from template to · f8ff1ee5
      Peter Eisentraut 提交于
      Makefile.port, since they are of no use to configure and much of the
      library magic happens in Makefile.port anyway.
      
      Use __alpha, not __alpha__, since the former is universally available.
      Remove -DNOFIXADE from the compile command line and put it in the port
      include file.
      f8ff1ee5
  31. 21 10月, 2000 2 次提交
  32. 15 10月, 2000 2 次提交
    • B
      This fixes a small problem with identifying -lbind as required for · 4c145712
      Bruce Momjian 提交于
      BeOS.
      
      David Reid
      4c145712
    • B
      The configure script fails to find <netinet/tcp.h>. · 0f07d644
      Bruce Momjian 提交于
      As a result, backend/libpq/pqcomm.c and interfaces/libpq/fe-connect.c
      fail to compile.
      
      The <netinet/tcp.h> header needs to be preceded by <netinet/in.h>, at
      least on IRIX, Solaris and AIX.  The simple configure test fails.
      (That header on Linux is idempotent.)
      
      The basic problem is that <netinet/tcp.h> is a BSD header.  The
      correct header for TCP internals such as TCP_NODELAY on a UNIX system
      is <xti.h>.  By UNIX I mean UNIX95 (aka XPG4v2 or SUSv1) or later.
      The current UNIX standard (UNIX98 aka SUSv2) is available online at
      <http://www.opengroup.org/onlinepubs/7908799/>.
      
      The fix is to add header support for <xti.h> into configure.in and
      config.h.in.
      
      The 2 files which conditionally include <netinet/tcp.h> need also to
      conditionally include <xti.h>.
      
      Pete Forman
      0f07d644
  33. 11 10月, 2000 1 次提交
  34. 10 10月, 2000 1 次提交
  35. 09 10月, 2000 1 次提交