Skip to content
Snippets Groups Projects
  1. Oct 24, 2004
    • Tom Lane's avatar
      If we're going to test for switch validity by observing whether the · 9b3fc492
      Tom Lane authored
      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
  2. Oct 20, 2004
    • Neil Conway's avatar
      When using GCC, change the default CFLAGS to: · 857e210e
      Neil Conway authored
        -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
  3. Oct 11, 2004
    • Tom Lane's avatar
      Another try at making plpython autoconfiguration work correctly. Use a · 669ca7af
      Tom Lane authored
      -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
  4. Oct 10, 2004
  5. Oct 06, 2004
  6. Oct 04, 2004
  7. Sep 18, 2004
  8. Sep 17, 2004
  9. Sep 11, 2004
  10. Sep 08, 2004
  11. Sep 02, 2004
  12. Aug 17, 2004
  13. Aug 12, 2004
  14. Jul 30, 2004
  15. Jul 17, 2004
  16. Jun 08, 2004
  17. May 20, 2004
  18. Apr 26, 2004
    • Bruce Momjian's avatar
      Unconditionally define: · 30a06fe2
      Bruce Momjian authored
      	-D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS
      
      for all ports.  It can't hurt if they are not supported, but it makes
      our job easier for porting.
      
      Should fix Darwin compile and other platforms without mucking with the
      thread detection code.
      30a06fe2
  19. Apr 23, 2004
  20. Mar 20, 2004
  21. Feb 02, 2004
  22. Jan 19, 2004
  23. Dec 13, 2003
  24. Nov 29, 2003
    • PostgreSQL Daemon's avatar
      · 969685ad
      PostgreSQL Daemon authored
      $Header: -> $PostgreSQL Changes ...
      969685ad
  25. Nov 24, 2003
  26. Nov 06, 2003
  27. Nov 04, 2003
  28. Nov 01, 2003
  29. Oct 25, 2003
  30. Sep 07, 2003
    • Bruce Momjian's avatar
      Changes for MinGW/WIN32: · 4b407f6c
      Bruce Momjian authored
              o allow configure to see include/port/win32 include files
              o add matching Win32 accept() prototype
              o allow pg_id to compile with native Win32 API
              o fix invalide mbvalidate() function calls (existing bug)
              o allow /scripts to compile with native Win32 API
              o add win32.c to Win32 compiles (already in *.mak files)
      4b407f6c
  31. Sep 02, 2003
  32. Jul 24, 2003
    • Tom Lane's avatar
      Have a go at fixing various outstanding portability issues in code that · df63503d
      Tom Lane authored
      was modified for IPv6.  Use a robust definition of struct sockaddr_storage,
      do a proper configure test to see if ss_len exists, don't assume that
      getnameinfo() will handle AF_UNIX sockets, don't trust getaddrinfo to
      return the protocol we ask for, etc.  This incorporates several outstanding
      patches from Kurt Roeckx, but I'm to blame for anything that doesn't
      work ...
      df63503d
  33. Jun 24, 2003
  34. Jun 12, 2003
Loading