Tom Lane
f690920a75
Infrastructure for upgraded error reporting mechanism. elog.c is
...
rewritten and the protocol is changed, but most elog calls are still
elog calls. Also, we need to contemplate mechanisms for controlling
all this functionality --- eg, how much stuff should appear in the
postmaster log? And what API should libpq expose for it?
23 years ago
Bruce Momjian
dfc6649c4d
Add Win32 versions of unlink and rename --- loop until success.
23 years ago
Tom Lane
e138630251
On some systems <sys/types.h> must be included before <sys/socket.h>.
23 years ago
Peter Eisentraut
cb1d036acb
Generate pg_config.h.in by autoheader. Separate out manually editable
...
parts. Standardize spelling of comments in pg_config.h.
23 years ago
Tom Lane
1da6eb7fda
Whack getaddrinfo() patch around until it works, more or less, on
...
machines without IPv6. Or at least it works on HPUX 10.20 ...
23 years ago
Peter Eisentraut
82a91eb54e
Simplify the socket handling code by supplying a replacement getaddrinfo()
...
function if the OS doesn't provide one.
23 years ago
Peter Eisentraut
1a7f4ed525
Make "win" a separate port from "cygwin". This means you can now
...
configure under native Windows (MinGW that is), but you won't get very far
compiling yet. The dynaloader files are from Jan Wieck's patch set.
23 years ago
Tom Lane
1d57374114
Use poll(2) in preference to select(2), if available. This solves
...
problems in applications that may have a large number of files open,
such that libpq's socket number exceeds the range supported by fd_set.
From Chris Brown.
23 years ago
Bruce Momjian
747c6152fd
Autoconf run for readline/libedit patch.
23 years ago
Bruce Momjian
0e010a54a3
Update FAQ's in head and 7.3.X.
23 years ago
Peter Eisentraut
62c35b3098
Simplify evaluation of TCL_INCLUDE_SPEC.
23 years ago
Peter Eisentraut
955a1f81a7
Factor out the code that detects the long long int snprintf format into a
...
separate macro. Also add support for %I64d which is the way on Windows.
The code that checks for the 64-bit int type now gives more reasonable
results when cross-compiling: In that case we just take the compiler's
information and trust that the arithmetic works. Disabling int64 is too
pessimistic.
23 years ago
Tom Lane
15ab7a8720
Where available, use utime() or utimes() to update the file mod time
...
of the socket file and socket lock file; this should prevent both of them
from being removed by even the stupidest varieties of /tmp-cleaning
script. Per suggestion from Giles Lean.
23 years ago
Bruce Momjian
bcf7a35f3c
A tiny patch to fix a typo in configure.in and another one in
...
RELEASE_CHANGES.
Manfred Koizar
23 years ago
Peter Eisentraut
9df2c44032
Fix IPv6 detection and IPv6 to 4 conversion to use only standard
...
interfaces.
23 years ago
Bruce Momjian
7c97b00e4a
Check for sockaddr_in6 for IPv6 code, rather than ip6.h.
23 years ago
Peter Eisentraut
939a59ffc6
Use our own version of getopt_long() if the OS doesn't have one.
23 years ago
Bruce Momjian
f240746739
Add test for netinet/ip6.h and getaddrinfo, to enable IPv6.
23 years ago
Bruce Momjian
895f954f24
Update ipv6 comment, move configure test to the right place
23 years ago
Bruce Momjian
c3e9699f21
Enable IPv6 connections to the server, and add pg_hba.conf IPv6 entries
...
if the OS supports it. Code will still compile on non-IPv6-aware
machines (feature added by Bruce).
Nigel Kukard
23 years ago
Tom Lane
2e1f2c3109
Make use of TCL_INCLUDE_SPEC if available (it's new in Tcl 8.4, too bad
...
it took 'em this long to realize it's needed...)
23 years ago
Bruce Momjian
90b3a0b6fd
Improve comment.
23 years ago
Bruce Momjian
05a6b37912
Re-addd Rod's ALTER DOMAIN patch.
23 years ago
Bruce Momjian
8fc86dd593
We have just finished porting the old KAME IPv6 patch over to
...
postgresql version 7.3, but yea... this patch adds full IPv6
support to postgres. I've tested it out on 7.2.3 and has
been running perfectly stable.
CREDITS:
The KAME Project (Initial patch)
Nigel Kukard <nkukard@lbsd.net>
Johan Jordaan <johanj@lando.co.za>
23 years ago
Bruce Momjian
f988edb4e1
Add OpenBSD local indent credentials, from William Ahern.
23 years ago
Tom Lane
b8cdc57ba7
Brand CVS tip as 7.4devel.
23 years ago
Bruce Momjian
24135fbf09
Stamp beta4.
23 years ago
Bruce Momjian
4668d54f0b
Add fseeko for NetBSD.
23 years ago
Bruce Momjian
d36caf103b
Stamp for 7.3 beta3.
23 years ago
Bruce Momjian
b093f8825d
Fix include files for new PageOutput call.
23 years ago
Bruce Momjian
c9984ab79d
Add comments on bsd/os handling.
23 years ago
Bruce Momjian
dc4d18e056
Add fseeko/ftello using fsetpos/fgetpos for BSD/OS.
23 years ago
Bruce Momjian
4852dd9d61
Stamp configure for beta2.
24 years ago
Peter Eisentraut
105907f7dc
Put in defense against gcc -ffast-math.
24 years ago
Bruce Momjian
ff9973a8f1
Remove src/test/regress/sql: plpgsql-nsp-testing.sql per Joe Conway.
24 years ago
Bruce Momjian
8aa966e4b8
Add mention of config.log for configure failure debugging.
24 years ago
Bruce Momjian
f3b211841e
Add JAVA_HOME test for Ant.
24 years ago
Peter Eisentraut
b9d5620a14
autoconf
24 years ago
Peter Eisentraut
e43ecb3d1a
Remove leftovers from subproject removals. Fixes for Python and Kerberos
...
configuration.
24 years ago
Bruce Momjian
ba982373dc
Stamp configure.in with 7.3b1, not just 7.3. Seems Marc does that
...
usually anyway.
24 years ago
Bruce Momjian
79ecb80c74
Brand 7.3. Ready for beta!
24 years ago
Peter Eisentraut
77f7763b55
Remove all traces of multibyte and locale options. Clean up comments
...
referring to "multibyte" where it really means character encoding.
24 years ago
Bruce Momjian
75803a0163
Add check for Ant version >= 1.5.
24 years ago
Bruce Momjian
ce26e71945
Run autoconf.
24 years ago
Bruce Momjian
4890ec9eac
Re-enable perl configure tests for psql help file generation.
24 years ago
Marc G. Fournier
9a0b4d7f84
perl5 interface moved to gborg
24 years ago
Marc G. Fournier
5a303f878e
Remove all traces of the ODBC driver, which is now on GBorg as the psqlodbc
...
24 years ago
Marc G. Fournier
da4683fbe1
Okay, libpq++ is moved to GBorg, and all traces of it have been removed
...
24 years ago
Peter Eisentraut
6faf8024fa
Enable large file support.
...
Use off_t and size_t in pg_dump to handle file offset arithmetic correctly.
24 years ago
Peter Eisentraut
b0c3c48eb3
Assemble portability modules into libpgport library.
...
Some makefile simplifications.
24 years ago