1. 11 Oct, 1999 1 commit
  2. 03 Oct, 1999 1 commit
  3. 02 Oct, 1999 1 commit
  4. 12 Sep, 1999 1 commit
    • Marc G. Fournier's avatar
      · b705fa39
      Marc G. Fournier authored
      Make sure both SRCH_INC and SRCH_LIB are checked for existances and added to
      the CPPFLAGS/LDFLAGS variables...
      b705fa39
  5. 03 Aug, 1999 1 commit
  6. 01 Aug, 1999 1 commit
  7. 20 Jul, 1999 1 commit
  8. 19 Jul, 1999 3 commits
  9. 18 Jul, 1999 6 commits
  10. 30 May, 1999 1 commit
  11. 29 May, 1999 1 commit
  12. 26 May, 1999 1 commit
    • Marc G. Fournier's avatar
      · 18018627
      Marc G. Fournier authored
      Give BEOS a chance ...
      18018627
  13. 17 May, 1999 1 commit
    • Marc G. Fournier's avatar
      · a0b7daa1
      Marc G. Fournier authored
      Apply freebsd specific patches dealign with ELF system from FreeBSD's
      ports collection ...
      a0b7daa1
  14. 11 May, 1999 1 commit
  15. 20 Apr, 1999 1 commit
  16. 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
  17. 25 Mar, 1999 1 commit
  18. 24 Mar, 1999 1 commit
  19. 16 Mar, 1999 1 commit
  20. 15 Mar, 1999 1 commit
  21. 08 Mar, 1999 1 commit
    • Marc G. Fournier's avatar
      · 75007a72
      Marc G. Fournier authored
      Have configure check for use of %lld for int64, and if that fails, check for
      use of %qd...a more generic solution then having #ifdef __<INSERT OS HERE>__
      in the code...
      75007a72
  22. 07 Mar, 1999 1 commit
  23. 06 Mar, 1999 1 commit
  24. 21 Feb, 1999 1 commit
    • Tom Lane's avatar
      Rearrange handling of MAXBACKENDS a little bit. The default setting · 9d197856
      Tom Lane authored
      of MAXBACKENDS is now 1024, since all it's costing is about 32 bytes of memory
      per array slot.  configure's --with-maxbackends switch now controls DEF_MAXBACKENDS
      which is simply the default value of the postmaster's -N switch.  Thus,
      the out-of-the-box configuration will still limit you to 64 backends,
      but you can go up to 1024 backends simply by restarting the postmaster with
      a different -N switch --- no rebuild required.
      9d197856
  25. 19 Feb, 1999 1 commit
    • Tom Lane's avatar
      Allow maximum number of backends to be set at configure time · e77b630c
      Tom Lane authored
      (--with-maxbackends).  Add a postmaster switch (-N backends) that allows
      the limit to be reduced at postmaster start time.  (You can't increase it,
      sorry to say, because there are still some fixed-size arrays.)
      Grab the number of semaphores indicated by min(MAXBACKENDS, -N) at
      postmaster startup, so that this particular form of bogus configuration
      is exposed immediately rather than under heavy load.
      e77b630c
  26. 03 Feb, 1999 1 commit
    • Tom Lane's avatar
      Modify int8 to not depend on sscanf(), and fix configure's test · 724119a9
      Tom Lane authored
      for int8 support.  configure now checks only snprintf() for int8 support,
      not sprintf and sscanf as it used to.  The reason for doing this is that
      if we are supplying our own snprintf code (which does handle long long int),
      we now only need working long long support in the compiler not in the
      platform's C library.  I have verified that int8 now passes regression test
      on HPUX 9, and I think it should work on SunOS 4.1.* and other older
      platforms if gcc is used.
      724119a9
  27. 01 Feb, 1999 1 commit
    • Marc G. Fournier's avatar
      · 6ca2bf65
      Marc G. Fournier authored
      freebsd4.0 needed to be added to configure...
      6ca2bf65
  28. 17 Jan, 1999 2 commits
  29. 28 Dec, 1998 1 commit
  30. 13 Dec, 1998 1 commit
    • Tom Lane's avatar
      Use standard AC_PROG_INSTALL macro to search for install program, · a10b38f2
      Tom Lane authored
      instead of our own halfway-there code.  Add AC_STRUCT_TIMEZONE call
      to check whether tm_zone exists in struct tm.  Revise reading of template
      file so that templates can define any variables they feel like (and,
      indeed, can execute arbitrary shell code) rather than being constrained
      to a fixed set of variable names.
      a10b38f2
  31. 29 Nov, 1998 1 commit
  32. 23 Nov, 1998 1 commit
    • Tom Lane's avatar
      modify configure so that template/.similar entries can be · 6fef1a26
      Tom Lane authored
      selected when they match a prefix of the  value.  The previous method,
      which stripped all version data from  and then tried to match that
      against .similar entries, was entirely useless when .similar contained
      several entries for different version numbers of a single OS name.
      6fef1a26