1. 02 10月, 2007 1 次提交
  2. 21 9月, 2007 1 次提交
  3. 12 7月, 2007 2 次提交
  4. 11 7月, 2007 1 次提交
  5. 10 7月, 2007 1 次提交
  6. 04 5月, 2007 1 次提交
  7. 15 4月, 2007 1 次提交
  8. 06 4月, 2007 2 次提交
  9. 26 3月, 2007 1 次提交
  10. 21 2月, 2007 1 次提交
  11. 07 2月, 2007 1 次提交
  12. 28 1月, 2007 2 次提交
  13. 03 1月, 2007 1 次提交
  14. 22 12月, 2006 1 次提交
  15. 06 11月, 2006 1 次提交
    • T
      Revert to the pre-8.2 method of probing for libm, that is, always · 02f37bd8
      Tom Lane 提交于
      include it if it links properly.  It seems too risky to assume that
      standard functions like pow() are not special-cased by the compiler.
      Per report from Andreas Lange that build fails on Solaris cc compiler
      with -fast.  Even though we don't consider that a supported option,
      I'm worried that similar issues will arise with other compilers.
      02f37bd8
  16. 08 10月, 2006 1 次提交
  17. 05 10月, 2006 2 次提交
    • T
      Second try at fixing libedit configuration for Bob Friesenhahn. · 9e6c3582
      Tom Lane 提交于
      Buildfarm results from 'gazelle' show that there are indeed libedit
      versions for which history.h is a needed header, even though it's
      apparently been dropped entirely in other versions.  Grumble.
      9e6c3582
    • T
      Adjust configure's handling of libedit to not look for a history.h file. · bdef2bf2
      Tom Lane 提交于
      Per Bob Friesenhahn's report, this file is not supplied by some versions
      of libedit, and even when it is supplied it seems to be just a link to
      readline.h, so we don't need to include it anyway.
      Also, ensure that we won't try to use a too-old version of Bison.
      The previous coding would bleat but then use it anyway; better to invoke
      the 'missing' script if any grammar files need to be rebuilt.
      bdef2bf2
  18. 02 10月, 2006 1 次提交
  19. 28 9月, 2006 1 次提交
  20. 09 9月, 2006 1 次提交
  21. 25 7月, 2006 1 次提交
  22. 19 6月, 2006 1 次提交
    • T
      Don't try to call posix_fadvise() unless <fcntl.h> supplies a declaration · 1e8ae136
      Tom Lane 提交于
      for it.  Hopefully will fix core dump evidenced by some buildfarm members
      since fadvise patch went in.  The actual definition of the function is not
      ABI-compatible with compiler's default assumption in the absence of any
      declaration, so it's clearly unsafe to try to call it without seeing a
      declaration.
      1e8ae136
  23. 24 5月, 2006 1 次提交
  24. 30 4月, 2006 1 次提交
  25. 07 3月, 2006 1 次提交
  26. 01 3月, 2006 1 次提交
  27. 21 2月, 2006 1 次提交
  28. 04 2月, 2006 1 次提交
  29. 03 2月, 2006 1 次提交
  30. 18 1月, 2006 1 次提交
  31. 05 1月, 2006 1 次提交
  32. 06 12月, 2005 1 次提交
  33. 21 8月, 2005 1 次提交
    • T
      Convert the arithmetic for shared memory size calculation from 'int' · 0007490e
      Tom Lane 提交于
      to 'Size' (that is, size_t), and install overflow detection checks in it.
      This allows us to remove the former arbitrary restrictions on NBuffers
      etc.  It won't make any difference in a 32-bit machine, but in a 64-bit
      machine you could theoretically have terabytes of shared buffers.
      (How efficiently we could manage 'em remains to be seen.)  Similarly,
      num_temp_buffers, work_mem, and maintenance_work_mem can be set above
      2Gb on a 64-bit machine.  Original patch from Koichi Suzuki, additional
      work by moi.
      0007490e
  34. 02 7月, 2005 1 次提交
  35. 27 6月, 2005 1 次提交
  36. 05 6月, 2005 1 次提交
    • B
      · 72c53ac3
      Bruce Momjian 提交于
      Allow kerberos name and username case sensitivity to be specified from
      postgresql.conf.
      
      ---------------------------------------------------------------------------
      
      
      Here's an updated version of the patch, with the following changes:
      
      1) No longer uses "service name" as "application version". It's instead
      hardcoded as "postgres". It could be argued that this part should be
      backpatched to 8.0, but it doesn't make a big difference until you can
      start changing it with GUC / connection parameters. This change only
      affects kerberos 5, not 4.
      
      2) Now downcases kerberos usernames when the client is running on win32.
      
      3) Adds guc option for "krb_caseins_users" to make the server ignore
      case mismatch which is required by some KDCs such as Active Directory.
      Off by default, per discussion with Tom. This change only affects
      kerberos 5, not 4.
      
      4) Updated so it doesn't conflict with the rendevouz/bonjour patch
      already in ;-)
      
      Magnus Hagander
      72c53ac3