- Oct 24, 2004
-
-
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.
-
- Oct 20, 2004
-
-
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.
-
- Oct 11, 2004
-
-
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.
-
- Oct 10, 2004
-
-
Tom Lane authored
-
- Oct 06, 2004
-
-
Bruce Momjian authored
Magnus Hagander
-
- Oct 04, 2004
-
-
Bruce Momjian authored
# MinGW uses '%I64d', though gcc throws an warning with -Wall, # while '%lld' doesn't generate a warning, but doesn't work.
-
- Sep 18, 2004
-
-
Peter Eisentraut authored
-
- Sep 17, 2004
-
-
Joe Conway authored
from James William Pye.
-
- Sep 11, 2004
-
-
Bruce Momjian authored
than /dev/null, which Win32 doesn't have.
-
Bruce Momjian authored
-
- Sep 08, 2004
-
-
Bruce Momjian authored
-
- Sep 02, 2004
- Aug 17, 2004
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- Aug 12, 2004
-
-
Bruce Momjian authored
test only tests for building a binary, not building a shared library. On Linux, you can build a binary with -pthread, but you can't build a binary that uses a threaded shared library unless you also use -pthread when building the binary, or adding -lpthread to the shared library build. This patch has the effect of doing the later by adding both -pthread and -lpthread when building libpq.
-
Bruce Momjian authored
-
- Jul 30, 2004
-
-
Peter Eisentraut authored
some massaging by Peter Eisentraut. This is basically a simple generalization of the existing contrib makefiles.
-
- Jul 17, 2004
-
-
Peter Eisentraut authored
macros provided by the real libtool, when other packages borrow some macros from PostgreSQL, as in the case of the ODBC driver.
-
- Jun 08, 2004
-
-
Bruce Momjian authored
-
- May 20, 2004
-
-
Bruce Momjian authored
David Turover
-
- Apr 26, 2004
-
-
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.
-
- Apr 23, 2004
-
-
Bruce Momjian authored
Allow additional thread flags to be added via port templates. Change thread flag names to PTHREAD_CFLAGS and PTHREAD_LIBS to match new configure script.
-
- Mar 20, 2004
-
-
Bruce Momjian authored
Backpatch to 7.4.X. Required for Solaris 7 & 8.
-
- Feb 02, 2004
-
-
Tom Lane authored
-fno-strict-aliasing.
-
- Jan 19, 2004
-
-
Tom Lane authored
-
- Dec 13, 2003
-
-
Bruce Momjian authored
docbook style sheets, as discussed with Peter.
-
- Nov 29, 2003
-
-
PostgreSQL Daemon authored
$Header: -> $PostgreSQL Changes ...
-
- Nov 24, 2003
-
-
Peter Eisentraut authored
back --infodir, which several automatic build environments expect to exist. Add --without-docdir to prevent installation of documentation, which is helpful for things like RPM that have their own method of installing documentation.
-
- Nov 06, 2003
-
-
Peter Eisentraut authored
-
- Nov 04, 2003
-
-
Peter Eisentraut authored
have included a few fixes over the years to make them more robust and faster.
-
Peter Eisentraut authored
-
- Nov 01, 2003
-
-
Peter Eisentraut authored
When --enable-debug is used, then the default CFLAGS for non-GCC is just -g without -O. Backpatch enhancement of Autoconf inline test that detects problems with the HP C compiler.
-
- Oct 25, 2003
-
-
Peter Eisentraut authored
option -fno-strict-aliasing is available.
-
- Sep 07, 2003
-
-
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)
-
- Sep 02, 2003
-
-
Peter Eisentraut authored
unneeded configure work.
-
- Jul 24, 2003
-
-
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 ...
-
- Jun 24, 2003
-
-
Bruce Momjian authored
it. Also handle __ss_family as a synonym for ss_family. Kurt Roeckx
-
- Jun 12, 2003
-
-
Tom Lane authored
on some platforms.
-
Bruce Momjian authored
Kurt Roeckx Andrew Dunstan
-