Marc G. Fournier
f25013104a
tag 8.3.9
2009-12-10 03:02:07 +00:00
Marc G. Fournier
e01fdca9f7
Tag 8.3.8
2009-09-04 00:53:29 +00:00
Marc G. Fournier
c87a4d31f4
tag 8.3.7
2009-03-13 02:08:41 +00:00
Marc G. Fournier
5298d511ee
tag for 8.3.6
2009-01-30 02:59:29 +00:00
Tom Lane
72a3bc4a1d
Remove references to pgsql-ports and pgsql-patches mailing lists from
...
various documentation, since those lists are now dead/deprecated.
Point to pgsql-bugs and/or pgsql-hackers as appropriate.
2009-01-06 17:27:19 +00:00
Andrew Dunstan
9ac53e7978
Detect and error out on inability to get proper linkage information required for plperl, usually due to absence of perl ExtUtils::Embed module. Backpatch as far as 8.1.
2008-11-12 00:00:29 +00:00
Marc G. Fournier
a06dedfc5e
commit for 8.3.5
2008-10-31 02:38:34 +00:00
Peter Eisentraut
2926e1bcfb
Missing space in error message
2008-10-30 12:27:42 +00:00
Marc G. Fournier
63aa5e3527
tag for 8.3.4
2008-09-19 03:04:13 +00:00
Marc G. Fournier
668396e05c
tag 8.3.3
2008-06-09 00:38:40 +00:00
Marc G. Fournier
21cb67512c
tag for 8.3.2
2008-06-06 03:56:39 +00:00
Tom Lane
dcab19c084
Require bind_textdomain_codeset() not just gettext() to enable NLS support.
...
GNU gettext before 0.10.36 does not have that function, and is generally too
incomplete to be usable.
2008-05-27 22:18:11 +00:00
Tom Lane
8209e1a987
Fix broken configure test for libxslt: it was probing for xsltLibxmlVersion,
...
which is a global variable not a function, and so the probe failed on machines
where the linker makes a distinction (cf. Red Hat bug #444317 ). Probe for
an actual function instead.
2008-04-28 22:47:11 +00:00
Marc G. Fournier
fdd23cd69e
update configure for 8.3.1 prior to tag
2008-03-14 03:23:22 +00:00
Tom Lane
899b9c3e04
Use -fwrapv in CFLAGS if we are using a version of gcc that accepts this flag.
...
This prevents compiler optimizations that assume overflow won't occur, which
breaks numerous overflow tests that we need to have working. It is known
that gcc 4.3 causes problems and possible that 4.1 does. Per my proposal
of some time ago and a recent report from Kris Jurka.
Backpatch as far as 8.0, which is as far as the patch conveniently goes.
7.x was pretty short of overflow tests anyway, so it may not matter there,
even assuming that anyone cares whether 7.x builds on recent gcc.
2008-03-10 21:50:23 +00:00
Tom Lane
53c64ad097
Use our own getopt() and getopt_long() on Solaris, because that platform's
...
versions don't handle long options the way we want. Per Zdenek Kotala.
2008-02-24 05:22:03 +00:00
Marc G. Fournier
9e647a1387
configure tag'd 8.3.0 and built witih autoconf 2.59
2008-02-01 04:16:29 +00:00
Peter Eisentraut
79a323ab49
Change /contrib to contrib for consistency.
2008-01-24 06:23:33 +00:00
Marc G. Fournier
aeeef4119e
must commit after autoconf ... and yes, I used the right autoconf
2008-01-18 04:47:32 +00:00
Tom Lane
2bf121e40b
Stamp release 8.3RC1.
...
Security: CVE-2007-4769, CVE-2007-4772, CVE-2007-6067, CVE-2007-6600, CVE-2007-6601
2008-01-03 21:40:12 +00:00
Bruce Momjian
9098ab9e32
Update copyrights in source tree to 2008.
2008-01-01 19:46:01 +00:00
Tom Lane
01434d41d4
Stamp 8.3beta4.
2007-12-03 00:11:01 +00:00
Tom Lane
7c0bc953e6
Re-do configure with autoconf 2.59
2007-11-16 04:59:25 +00:00
Marc G. Fournier
2a174e45dd
update files for beta3
2007-11-16 04:29:45 +00:00
Tom Lane
1ef648cfbc
I find that an out-of-the-box installation of OSSP uuid 1.6.0 installs
...
itself as libuuid, not libossp-uuid which was the only case expected by
our build support. Install a configure test to determine which name
to use (and to check that the library is present at all).
2007-11-13 00:13:19 +00:00
Bruce Momjian
c1a03bee08
Document that configure option only affects contrib:
...
--with-ossp-uuid use OSSP UUID library when building /contrib/uuid-ossp
2007-11-05 17:43:20 +00:00
Bruce Momjian
f96e1e0faa
Update wording for xsl configure option.
2007-11-04 18:53:39 +00:00
Bruce Momjian
ede83e04aa
Document that configure --with-libxslt controls just /contrib/xml2.
...
Nikolay Samokhvalov
2007-11-04 18:10:42 +00:00
Magnus Hagander
6f14effbf9
New versions of mingw have gettimeofday(), so add an autoconf test
...
for this.
2007-10-29 11:25:42 +00:00
Tom Lane
5b5a70aedf
Stamp 8.3beta2.
2007-10-27 00:22:42 +00:00
Tom Lane
07d0a370c1
Make configure probe for the location of the <uuid.h> header file.
...
Needed to accommodate different layout on some platforms (Debian for
one). Heikki Linnakangas
2007-10-23 21:38:16 +00:00
Marc G. Fournier
18cb6f7dd0
tag it 8.3beta1 ... the beta cycle begins
2007-10-05 02:55:41 +00:00
Tom Lane
f1d37a9997
Cope with ERR_set_mark() and ERR_pop_to_mark() not existing in older
...
OpenSSL libraries --- just don't call them if they're not there. This
might possibly lead to misleading error messages, but we'll just have
to live with that.
2007-10-02 00:25:20 +00:00
Tom Lane
017daed0dd
If we're gonna provide an --enable-profiling configure option, surely
...
it ought to know that you need -DLINUX_PROFILE on Linux.
2007-09-21 02:33:46 +00:00
Tom Lane
e435bddb9c
Revert ill-starred change to ICC anti-aliasing switches. Per
...
Jeremy Drake.
2007-09-12 14:28:55 +00:00
Tom Lane
861f7357b9
Give ICC its preferred, documented form of the no-strict-aliasing
...
switch, viz '-fno-alias'. Since we have a separate code path here
anyway, it's just as easy to cooperate.
2007-09-11 19:50:25 +00:00
Peter Eisentraut
4e94d1f952
Add configure option --with-system-tzdata to use operating system time zone
...
database.
2007-08-20 08:53:12 +00:00
Tom Lane
faa1179678
Fix search for SGML stylesheets to include the place where Gentoo keeps them.
...
Brendan Jurd
2007-08-09 02:33:58 +00:00
Tom Lane
df9ea6a1f1
Adjust configure so that it sets CFLAGS properly for Intel's icc
...
even if the compiler is not defining __GNUC__. Per report from
Dirk Tilger that it is possible for icc to not do that.
2007-08-05 15:43:00 +00:00
Tom Lane
177be3f9bb
Adjust configure script to print the bison and flex versions in use.
...
Minor rearrangements to make a few tests in a more logical order.
2007-07-19 17:15:30 +00:00
Magnus Hagander
3787797f72
Support for finding gssapi functions in the library "gss", as required
...
by Solaris 10 and possibly others.
Stefan Kaltenbrunner
2007-07-14 11:13:28 +00:00
Magnus Hagander
65a513c249
Support GSSAPI builds where the header is <gssapi.h> and not <gssapi/gssapi.h>,
...
such as OpenBSD (possibly all Heimdal).
Stefan Kaltenbrunner
2007-07-12 14:36:52 +00:00
Magnus Hagander
6771994058
Fix freenig of names in Kerberos when using MIT - need to use the
...
free function provided in the Kerberos library.
This fixes a very hard to track down heap corruption on windows
when using debug runtimes.
2007-07-12 14:10:39 +00:00
Tom Lane
e27a8df1bf
Fix misspelling.
2007-07-10 16:41:01 +00:00
Magnus Hagander
6160106c74
Add support for GSSAPI authentication.
...
Documentation still being written, will be committed later.
Henry B. Hotz and Magnus Hagander
2007-07-10 13:14:22 +00:00
Tom Lane
c786796d0a
Fix computation of PG_VERSION_NUM by configure: remove unnecessary and
...
unportable backslashes in awk script (per Patrick Welche), and add
brackets to prevent autoconf from mangling sed's regexp (the sed call
here never did what was expected).
2007-06-29 16:18:43 +00:00
Andrew Dunstan
3da3c04f3a
Tidy overly long configure help lines.
2007-06-04 21:55:43 +00:00
Tom Lane
c7464720a3
tas() support for Renesas' M32R processor. Kazuhiro Inaoka
2007-05-04 15:20:52 +00:00
Peter Eisentraut
e08617cfba
Fix alignment of help output.
2007-04-21 18:26:44 +00:00
Peter Eisentraut
74496bc298
Contrib module uuid-ossp for generating UUID values using the OSSP UUID
...
library. New configure option --with-ossp-uuid to activate.
2007-04-21 17:26:18 +00:00