1. 07 5月, 2005 1 次提交
    • N
      Revert the ld --as-needed patch. This breaks Fedora Core 3, due to a strange · d733f110
      Neil Conway 提交于
      interaction between ld, readline, termcap, and psql. The symptom is psql
      failing with this error on startup:
      
          symbol lookup error: /usr/lib64/libreadline.so.4: undefined symbol: BC
      
      I'm still trying to find the best way to solve this, but in the mean time
      I'm reverting the patch in order to unbreak FC3.
      d733f110
  2. 06 5月, 2005 1 次提交
  3. 05 5月, 2005 1 次提交
    • N
      The issue has been raised in the past that our build system links each · d445b413
      Neil Conway 提交于
      executable against the maximal set of libraries it might need. So for
      example, if one executable requires `libreadline', all executables are
      linked against it.
      
      The easiest fix is to make use of GNU ld's --as-needed flag, which
      ignores linker arguments that are not actually needed by the specified
      object files. The attached patch modifies configure to check for this
      flag (when using GNU ld), and if ld supports it, adds the flag to
      LDFLAGS (we need to do the check since only relatively recent versions
      of GNU ld support this capability). Currently only GNU ld is supported;
      I'm not aware of any other linkers that support this functionality.
      d445b413
  4. 25 3月, 2005 1 次提交
  5. 12 3月, 2005 1 次提交
  6. 02 3月, 2005 2 次提交
  7. 01 3月, 2005 2 次提交
  8. 24 2月, 2005 2 次提交
  9. 22 2月, 2005 1 次提交
    • B
      Add support to port/snprintf.c for position parameter specification: · b4feafb6
      Bruce Momjian 提交于
      + # Determine if printf supports %1$ argument selection, e.g. %5$ selects
      + # the fifth argument after the printf print string.
      + # This is not in the C99 standard, but in the Single Unix Specification (SUS).
      + # It is used in our langauge translation strings.
      
      Nicolai Tufar with configure changes by Bruce.
      b4feafb6
  10. 18 1月, 2005 2 次提交
  11. 11 1月, 2005 1 次提交
  12. 07 1月, 2005 1 次提交
    • P
      · 75a59ad6
      PostgreSQL Daemon 提交于
      upgrade tags to rc4
      75a59ad6
  13. 02 1月, 2005 1 次提交
  14. 01 1月, 2005 1 次提交
    • P
      · 5e05d2bc
      PostgreSQL Daemon 提交于
      forgot to autoconf after tag'ng configure.in with rc3
      5e05d2bc
  15. 21 12月, 2004 2 次提交
  16. 17 12月, 2004 2 次提交
  17. 14 12月, 2004 2 次提交
  18. 04 12月, 2004 1 次提交
    • P
      · f51964fa
      PostgreSQL Daemon 提交于
      tag configure for rc1 ..
      f51964fa
  19. 03 12月, 2004 2 次提交
  20. 02 12月, 2004 1 次提交
  21. 30 11月, 2004 1 次提交
    • T
      Fix readline/libedit selection code to prefer readline over libedit · aef2d0d8
      Tom Lane 提交于
      reliably (ie, regardless of which libraries they depend on).  Also
      make sure that we don't select headers that obviously belong to the
      wrong one of the two libraries.  This was discussed back around 4-Sep
      but seems to have slipped through the cracks.  The header selection
      could be checked more closely, perhaps, but let's see if this is good
      enough.
      aef2d0d8
  22. 22 11月, 2004 1 次提交
    • P
      · 5776feab
      PostgreSQL Daemon 提交于
      update us to beta5
      5776feab
  23. 07 11月, 2004 1 次提交
  24. 02 11月, 2004 1 次提交
  25. 25 10月, 2004 1 次提交
    • P
      · 346aff04
      PostgreSQL Daemon 提交于
      make sure we tag configure.in as beta4 as well ...
      346aff04
  26. 24 10月, 2004 1 次提交
    • T
      If we're going to test for switch validity by observing whether the · 9b3fc492
      Tom Lane 提交于
      compiler emits any warnings, the test program had better be 100%
      correct, not only 90% correct.  The recent addition of -Wold-style-definition
      broke thread-safety detection on every platform that has that switch,
      because the test program used an old-style definition.
      9b3fc492
  27. 20 10月, 2004 1 次提交
    • N
      When using GCC, change the default CFLAGS to: · 857e210e
      Neil Conway 提交于
        -O2 -Wall -Wmissing-prototypes -Wpointer-arith
      
      Check whether the version of GCC we are using supports any of:
      
        -Wdeclaration-after-statement
        -Wendif-labels
        -Wold-style-definition
      
      And add the supported flags to CFLAGS.
      857e210e
  28. 15 10月, 2004 1 次提交
    • B
      > This lets you do something like: · 4d94e99b
      Bruce Momjian 提交于
      >
      >    ./configure LDFLAGS=-static-libgcc LDFLAGS_SL=-static-libgcc
      >
      > to produce binaries that do not depend on libgcc_s.so at all.
      
      Oliver Jowett
      4d94e99b
  29. 12 10月, 2004 1 次提交
    • T
      Another try at making plpython autoconfiguration work correctly. Use a · 669ca7af
      Tom Lane 提交于
      -L spec rather than assuming libpython is in the standard search path
      (this returns to the way 7.4 did it).  But check the distutils output
      to see if it looks like Python has built a shared library, and if so
      link with that instead of the probably-not-shared library found in
      configdir.
      669ca7af
  30. 11 10月, 2004 1 次提交
  31. 06 10月, 2004 2 次提交
    • B
      Here is a patch to fix win32 ssl builds. Summary of changes: · 902ca3e2
      Bruce Momjian 提交于
      * Links with -leay32 and -lssleay32 instead of crypto and ssl. On win32,
      "crypto and ssl" is only used for static linking.
      
      * Initializes SSL in the backend and not just in the postmaster. We
      cannot pass the SSL context from the postmaster through the parameter
      file, because it contains function pointers.
      
      * Split one error check in be-secure.c. Previously we could not tell
      which of three calls actually failed. The previous code also returned
      incorrect error messages if SSL_accept() failed - that function needs to
      use SSL_get_error() on the return value, can't just use the error queue.
      
      * Since the win32 implementation uses non-blocking sockets "behind the
      scenes" in order to deliver signals correctly, implements a version of
      SSL_accept() that can handle this. Also, add a wait function in case
      SSL_read or SSL_write() needs more data.
      
      Magnus Hagander
      902ca3e2
    • B
      Allow plpython to build on Win32. · 54313932
      Bruce Momjian 提交于
      Magnus Hagander
      54313932