1. 19 Jun, 1999 2 commits
  2. 25 May, 1999 1 commit
  3. 02 Apr, 1999 1 commit
    • Tom Lane's avatar
      Remove overly presumptuous use of __STDC__ in c.h, replacing · f620241d
      Tom Lane authored
      it with configure-script tests to see whether const, inline, volatile, etc
      work or not.  (Curiously, configure was already doing the work to see if
      const and inline were OK, but the results were not getting plugged into
      config.h :-(.)
      f620241d
  4. 30 Mar, 1999 1 commit
  5. 09 Mar, 1999 1 commit
    • Marc G. Fournier's avatar
      · f34240de
      Marc G. Fournier authored
      Changes to fix/improve the dynamic loading on NT
      
      From: Horak Daniel <horak@mmp.plzen-city.cz>
      f34240de
  6. 13 Feb, 1999 1 commit
  7. 11 Feb, 1999 1 commit
  8. 17 Jan, 1999 2 commits
  9. 13 Dec, 1998 1 commit
  10. 04 Oct, 1998 1 commit
  11. 01 Sep, 1998 1 commit
  12. 29 Aug, 1998 1 commit
    • Bruce Momjian's avatar
      Hello! · a060d5be
      Bruce Momjian authored
      Here is a new patch for libpq, to make it work on Win32 again (since
      the latest modifications broke it a little).
      
      Please also add the file "libpq.rc" to the interfaces/libpq directory.
      This will allow version-stamping of the generated DLL file, so that
      automatic install programs (and interested users) can determine
      the version of the file.  The file is currently set as "prerelease".
      Before the release, somebody should change the line "FILEFLAGS
      VS_FF_PRERELEASE" to "FILEFLAGS 0".  That information should probably
      go into toos\RELEASE_CHANGES.
      
      The patch is against the cvs as of ~ 1998-08-26 14:30 CEST.
      
      
      //Magnus
      a060d5be
  13. 25 Aug, 1998 1 commit
    • Marc G. Fournier's avatar
      · 1a5fb654
      Marc G. Fournier authored
      From: Massimo Dal Zotto <dz@cs.unitn.it>
      
      assert.patch
      
              adds a switch to turn on/off the assert checking if enabled at compile
              time. You can now compile postgres with assert checking and disable it
              at runtime in a production environment.
      1a5fb654
  14. 23 Jun, 1998 1 commit
  15. 20 Jun, 1998 1 commit
  16. 15 Jun, 1998 1 commit
  17. 06 Apr, 1998 1 commit
  18. 31 Mar, 1998 1 commit
  19. 20 Mar, 1998 1 commit
  20. 26 Feb, 1998 1 commit
  21. 24 Feb, 1998 1 commit
    • Marc G. Fournier's avatar
      From: t-ishii@sra.co.jp · 96316211
      Marc G. Fournier authored
      Ok. I have decided to use:
      
      #if defined(sun) && if defined(sparc) && !defined(__svr4)
      
      instead of defined(sunos4).  interfaces/libpq/libpq-fe.h and
      include/c.h have been modified(see included patches).
      
      Another porblems I have found are:
      
      o SunOS lacks strtoul(). to fix this I stole strtoul.c from FreeBSD
      and place it under backend/port. necessary modifications have been
      also made to backend/port/Makefile.in, include/config.h.in and
      configure.in (see included patches).
      96316211
  22. 12 Feb, 1998 1 commit
  23. 11 Feb, 1998 3 commits
  24. 27 Jan, 1998 1 commit
  25. 26 Jan, 1998 1 commit
    • Marc G. Fournier's avatar
      From: Phil Thompson <phil@river-bank.demon.co.uk> · d5bbe2ac
      Marc G. Fournier authored
      I've completed the patch to fix the protocol and authentication issues I
      was discussing a couple of weeks ago.  The particular changes are:
      
      - the protocol has a version number
      - network byte order is used throughout
      - the pg_hba.conf file is used to specify what method is used to
        authenticate a frontend (either password, ident, trust, reject, krb4
        or krb5)
      - support for multiplexed backends is removed
      - appropriate changes to man pages
      - the -a switch to many programs to specify an authentication service
        no longer has any effect
      - the libpq.so version number has changed to 1.1
      
      The new backend still supports the old protocol so old interfaces won't
      break.
      d5bbe2ac
  26. 24 Jan, 1998 1 commit
  27. 10 Nov, 1997 1 commit
  28. 30 Oct, 1997 1 commit
  29. 27 Oct, 1997 1 commit
    • Vadim B. Mikheev's avatar
      c.h: · 6855820e
      Vadim B. Mikheev authored
      #define StrNCpy(dst,src,len)    \
      	(strncpy((dst),(src),(len)),(len > 0) ? *((dst)+(len)-1)='\0' : \
      	NULL,(void)(dst))
      	     ^^^^^^ - to avoid "value computed is not used" from gcc
      	in ma-a-any places (should to fix thouse places instead, but ...
      	time)
      
      config.h.in:
      /*
       * TBL_FREE_CMD_MEMORY: free memory allocated for an user query inside
       * transaction block after this query is done.
       */
      #define TBL_FREE_CMD_MEMORY
      - this is default now.
      6855820e
  30. 25 Oct, 1997 2 commits
  31. 18 Sep, 1997 3 commits
  32. 08 Sep, 1997 2 commits