1. 19 7月, 1999 2 次提交
  2. 18 7月, 1999 2 次提交
  3. 30 5月, 1999 2 次提交
  4. 26 5月, 1999 1 次提交
    • M
      · 18018627
      Marc G. Fournier 提交于
      Give BEOS a chance ...
      18018627
  5. 17 5月, 1999 1 次提交
    • M
      · a0b7daa1
      Marc G. Fournier 提交于
      Apply freebsd specific patches dealign with ELF system from FreeBSD's
      ports collection ...
      a0b7daa1
  6. 12 5月, 1999 1 次提交
  7. 20 4月, 1999 1 次提交
  8. 19 4月, 1999 1 次提交
  9. 02 4月, 1999 1 次提交
    • T
      Remove overly presumptuous use of __STDC__ in c.h, replacing · f620241d
      Tom Lane 提交于
      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
  10. 26 3月, 1999 1 次提交
  11. 24 3月, 1999 1 次提交
  12. 16 3月, 1999 1 次提交
  13. 15 3月, 1999 2 次提交
  14. 08 3月, 1999 2 次提交
    • M
      · 75007a72
      Marc G. Fournier 提交于
      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
    • T
      Cleaner autoconf tests for int8 support. · dffb88b0
      Tom Lane 提交于
      dffb88b0
  15. 07 3月, 1999 1 次提交
  16. 21 2月, 1999 1 次提交
    • T
      Rearrange handling of MAXBACKENDS a little bit. The default setting · 9d197856
      Tom Lane 提交于
      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
  17. 19 2月, 1999 1 次提交
    • T
      Allow maximum number of backends to be set at configure time · e77b630c
      Tom Lane 提交于
      (--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
  18. 03 2月, 1999 1 次提交
    • T
      Modify int8 to not depend on sscanf(), and fix configure's test · 724119a9
      Tom Lane 提交于
      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
  19. 01 2月, 1999 1 次提交
    • M
      · 6ca2bf65
      Marc G. Fournier 提交于
      freebsd4.0 needed to be added to configure...
      6ca2bf65
  20. 17 1月, 1999 2 次提交
  21. 28 12月, 1998 1 次提交
  22. 14 12月, 1998 1 次提交
    • T
      Use standard AC_PROG_INSTALL macro to search for install program, · a10b38f2
      Tom Lane 提交于
      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
  23. 29 11月, 1998 1 次提交
  24. 23 11月, 1998 1 次提交
    • T
      modify configure so that template/.similar entries can be · 6fef1a26
      Tom Lane 提交于
      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
  25. 02 11月, 1998 1 次提交
    • M
      · c2009383
      Marc G. Fournier 提交于
      slight mods required for freebsd (elf vs aout stuff)
      c2009383
  26. 31 10月, 1998 3 次提交
    • M
      · 58544215
      Marc G. Fournier 提交于
      oops, forgot one part of the patch...remove 'false' setting to ELF_SYS...
      58544215
    • M
      · 15d61bb4
      Marc G. Fournier 提交于
      Minor FreeBSD fixes put in place
      
      From: SHIOZAKI Takehiko <takehi-s@ascii.co.jp>
      
      I tried snapshot(Oct30) and made some patches.
      # I think that it is confused to manage both Makefile.shlib and
      # makefiles/Makefile.*, don't you?
      
      * configure
              Now FreeBSD 2.X is not supported..., so I added its entry.
              If ELF_SYSTEM is set, gmake treat it defined even though
              it is "false".  So nothing should be set to use "ifdef".
              BSD_SHLIB etc. may have same problems.
      
      * Makefile.shlib
              As you said, FreeBSD entry is much like BSD's.
              I only added ELF_SYSTEM code.
      
      * makefiles/Makefile.freebsd
              Ifdef/else/endif can not be indented with TABs.
      15d61bb4
    • T
      Mention --without-CXX option in online help. · 47ea32f7
      Tom Lane 提交于
      47ea32f7
  27. 30 10月, 1998 3 次提交
    • M
      · 4283089d
      Marc G. Fournier 提交于
      Okay, this shoudl provide a fix for the freebsd problem...
      
      Added a ELF_SYS variable and check to configure.in...
      4283089d
    • T
      Drat. Should test a few more cases before committing. · a91c019c
      Tom Lane 提交于
      a91c019c
    • T
      Run AC_PROG_GCC_TRADITIONAL only when running AC_PROG_CC, · 579b72c5
      Tom Lane 提交于
      ie, not when user specifies --with-CC.  This corrects a scripting error
      that I'm surprised hasn't been reported more often.  Moving the macro call
      to the earlier point in the script is correct anyway: if -traditional is needed,
      it should get added to CFLAGS before we start using the compiler for
      other tests.
      579b72c5
  28. 29 10月, 1998 1 次提交
  29. 27 10月, 1998 1 次提交
    • M
      · 94995306
      Marc G. Fournier 提交于
      Starting with v3.0 of FreeBSD, we are now an elf system, and dont' have a
      -Bforcearchive flag for ld...
      
      Give FreeBSD its own special Makefile to get around the "bug"
      94995306
  30. 26 10月, 1998 1 次提交