Peter Eisentraut
79a323ab49
Change /contrib to contrib for consistency.
18 years ago
Marc G. Fournier
aeeef4119e
must commit after autoconf ... and yes, I used the right autoconf
18 years ago
Tom Lane
2bf121e40b
Stamp release 8.3RC1.
...
Security: CVE-2007-4769, CVE-2007-4772, CVE-2007-6067, CVE-2007-6600, CVE-2007-6601
18 years ago
Bruce Momjian
9098ab9e32
Update copyrights in source tree to 2008.
18 years ago
Bruce Momjian
670f05b07c
Provide a more helpful error message when there is an autoconf version
...
mismatch; backpatch.
18 years ago
Bruce Momjian
50058a5bae
Provide a more helpful error message when there is an autoconf version
...
mismatch. Batckpatch to 8.2.X.
18 years ago
Tom Lane
01434d41d4
Stamp 8.3beta4.
18 years ago
Peter Eisentraut
3f398e4a27
Require a specific Autoconf version, instead of a lower bound only.
18 years ago
Marc G. Fournier
2a174e45dd
update files for beta3
18 years ago
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).
18 years ago
Bruce Momjian
c1a03bee08
Document that configure option only affects contrib:
...
--with-ossp-uuid use OSSP UUID library when building /contrib/uuid-ossp
18 years ago
Bruce Momjian
f96e1e0faa
Update wording for xsl configure option.
18 years ago
Bruce Momjian
ede83e04aa
Document that configure --with-libxslt controls just /contrib/xml2.
...
Nikolay Samokhvalov
18 years ago
Magnus Hagander
6f14effbf9
New versions of mingw have gettimeofday(), so add an autoconf test
...
for this.
18 years ago
Tom Lane
5b5a70aedf
Stamp 8.3beta2.
18 years ago
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
18 years ago
Marc G. Fournier
18cb6f7dd0
tag it 8.3beta1 ... the beta cycle begins
18 years ago
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.
18 years ago
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.
19 years ago
Tom Lane
e435bddb9c
Revert ill-starred change to ICC anti-aliasing switches. Per
...
Jeremy Drake.
19 years ago
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.
19 years ago
Peter Eisentraut
4e94d1f952
Add configure option --with-system-tzdata to use operating system time zone
...
database.
19 years ago
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.
19 years ago
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.
19 years ago
Magnus Hagander
3787797f72
Support for finding gssapi functions in the library "gss", as required
...
by Solaris 10 and possibly others.
Stefan Kaltenbrunner
19 years ago
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
19 years ago
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.
19 years ago
Tom Lane
e27a8df1bf
Fix misspelling.
19 years ago
Magnus Hagander
6160106c74
Add support for GSSAPI authentication.
...
Documentation still being written, will be committed later.
Henry B. Hotz and Magnus Hagander
19 years ago
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).
19 years ago
Andrew Dunstan
3da3c04f3a
Tidy overly long configure help lines.
19 years ago
Tom Lane
c7464720a3
tas() support for Renesas' M32R processor. Kazuhiro Inaoka
19 years ago
Peter Eisentraut
e08617cfba
Fix alignment of help output.
19 years ago
Peter Eisentraut
74496bc298
Contrib module uuid-ossp for generating UUID values using the OSSP UUID
...
library. New configure option --with-ossp-uuid to activate.
19 years ago
Andrew Dunstan
f97d4a267a
Add --with-libxslt configure option
19 years ago
Andrew Dunstan
6506a584cc
Enable building contrib/xml2 if configured using --with-libxml.
...
If this breaks things due to missing libxslt, then I'll have to
revert it, but let's see if it breaks the buildfarm.
Workarounds in case libxslt is missing include:
. don't configure with libxml, or
. don't build contrib modules from the contrib Makefile (use the individual module Makefiles instead), or
. change the xml2 Makefile
19 years ago
Tom Lane
37a609b27f
Now that core functionality is depending on autoconf's AC_C_BIGENDIAN to be
...
right, there seems precious little reason to have a pile of hand-maintained
endianness definitions in src/include/port/*.h. Get rid of those, and make
the couple of places that used them depend on WORDS_BIGENDIAN instead.
19 years ago
Tom Lane
3e23b68dac
Support varlena fields with single-byte headers and unaligned storage.
...
This commit breaks any code that assumes that the mere act of forming a tuple
(without writing it to disk) does not "toast" any fields. While all available
regression tests pass, I'm not totally sure that we've fixed every nook and
cranny, especially in contrib.
Greg Stark with some help from Tom Lane
19 years ago
Magnus Hagander
96b171903d
Make ECPG regression tests use native threading instead of pthreads, now that
...
ecpglib supports it.
Change configure (patch from Bruce) and msvc build system to no longer require
pthreads on win32, since all parts of postgresql can be thread-safe using the
native platform functions.
19 years ago
Bruce Momjian
357be8c974
Properly fix PORTNAME in configure.
19 years ago
Bruce Momjian
0b1e4f8530
User PORTNAME for win32 tests, rather than $template, for consistency.
19 years ago
Tom Lane
66bbc2fdd5
Add -lcrypto as one of the possible link dependencies of libkrb5.
...
Per report from Jim Rosenberg. This possibly should get back-patched,
but I'm a bit suspicious of it still because of the lack of prior reports.
19 years ago
Magnus Hagander
18d82d03b5
Native shared memory implementation for win32.
...
Uses same underlying tech as before, but not the sysv emulation layer.
19 years ago
Bruce Momjian
6765df9174
Add configure --enable-profiling to enable GCC profiling. Patches from
...
Korry Douglas and Nikhil S
19 years ago
Peter Eisentraut
4f64a07bee
Add strlcat() from OpenBSD, to be used for replacing strncat and other
...
strange coding practices.
19 years ago
Bruce Momjian
25dc46334b
Fix configure detection code when --with-ldap and --enable-thread-safety
...
are both used.
Albe Laurenz
19 years ago
Bruce Momjian
91ed399517
Use autoconf build-in sys_siglist macro AC_DECL_SYS_SIGLIST, rather than
...
create our own.
19 years ago
Bruce Momjian
82480fc254
Use sys_siglist[] to print out signal names for signal exits, rather
...
than just numbers.
19 years ago
Peter Eisentraut
16f372d940
Optionally use xml2-config to detect installation locations of libxml.
19 years ago
Peter Eisentraut
de9aa5a7b4
Check and document minimum required version of libxml.
19 years ago