- Oct 05, 2006
-
-
Tom Lane authored
Buildfarm results from 'gazelle' show that there are indeed libedit versions for which history.h is a needed header, even though it's apparently been dropped entirely in other versions. Grumble.
-
Tom Lane authored
Per Bob Friesenhahn's report, this file is not supplied by some versions of libedit, and even when it is supplied it seems to be just a link to readline.h, so we don't need to include it anyway. Also, ensure that we won't try to use a too-old version of Bison. The previous coding would bleat but then use it anyway; better to invoke the 'missing' script if any grammar files need to be rebuilt.
-
- Oct 04, 2006
-
-
Tom Lane authored
repeatedly. Now that we don't have to worry about memory leaks from glibc's qsort, we can safely put CHECK_FOR_INTERRUPTS into the tuplesort comparators, as was requested a couple months ago. Also, get rid of non-reentrancy and an extra level of function call in tuplesort.c by providing a variant qsort_arg() API that passes an extra void * argument through to the comparison routine. (We might want to use that in other places too, I didn't look yet.)
-
- Oct 02, 2006
- Sep 27, 2006
-
-
Tom Lane authored
available directly on the platform. Per discussion, this function is sufficiently widely recognized to be treated as standard.
-
- Sep 23, 2006
-
-
PostgreSQL Daemon authored
Tag us Beta1
-
- Sep 09, 2006
-
-
Tom Lane authored
than before. Albe Laurenz (but editorialized heavily by me, so if it doesn't work it's my fault).
-
- Aug 23, 2006
-
-
Michael Meskes authored
-
Michael Meskes authored
Use initializer string length as size for character strings. Added ecpg_config.h file that is created via configure.
-
- Aug 17, 2006
-
-
Peter Eisentraut authored
found. Besides stopping those early who have no dtrace installed whatsoever, this will also alert those who have dtrace in /usr/sbin, which might not be in the path, which would produce confusing failures much later in the build process. Add documentation about pointing configure to find dtrace.
-
- Aug 04, 2006
-
-
Tom Lane authored
-
- Jul 27, 2006
-
-
Bruce Momjian authored
Albe Laurenz
-
- Jul 24, 2006
-
-
Peter Eisentraut authored
by Robert Lor
-
- Jul 11, 2006
-
-
Tom Lane authored
-
- Jun 18, 2006
-
-
Tom Lane authored
for it. Hopefully will fix core dump evidenced by some buildfarm members since fadvise patch went in. The actual definition of the function is not ABI-compatible with compiler's default assumption in the absence of any declaration, so it's clearly unsafe to try to call it without seeing a declaration.
-
- Jun 08, 2006
-
-
Bruce Momjian authored
o remove many WIN32_CLIENT_ONLY defines o add WIN32_ONLY_COMPILER define o add 3rd argument to open() for portability o add include/port/win32_msvc directory for system includes Magnus Hagander
-
- May 30, 2006
-
-
Bruce Momjian authored
Martijn van Oosterhout
-
- May 23, 2006
-
-
Bruce Momjian authored
in port/pg_config_paths.h.
-
- Apr 29, 2006
-
-
Tom Lane authored
Commit configure and pg_config.h.in, missed in last configure.in update.
-
Bruce Momjian authored
(NaN == 0), -mp1 fixes it, so add it to the CFLAGS. Autoconf run. Jeremy Drake
-
- Apr 27, 2006
-
-
Bruce Momjian authored
autoconf run.
-
- Apr 22, 2006
-
-
Bruce Momjian authored
Intel compiler has a bug in checking for division by NAN # (NaN == 0), -mp1 fixes it, so someday we might way to add it.
-
Bruce Momjian authored
the Intel compiler. Jeremy Drake
-
- Apr 19, 2006
-
-
Tom Lane authored
no evidence that any currently-supported platform needs this, and good reason to think that any platform that did need it couldn't use the static libraries anyway --- libpq, at least, has circular references. Removing the code shuts up tsort warnings about the circular references on some platforms.
-
- Apr 07, 2006
-
-
Andrew Dunstan authored
Revert getaddrinfo configure changes until we get a solution that is properly tested on Tru64 - pre recent discussion (or lack thereof) on -hackers.
-
- Mar 06, 2006
-
-
Bruce Momjian authored
PAM (such as Win32, but also unixen without PAM). On Unix, uses OpenLDAP. On win32, uses the builin WinLDAP library. Magnus Hagander
-
- Mar 05, 2006
-
-
Bruce Momjian authored
-
- Feb 28, 2006
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
backend version in C using > and < comparisons.
-
- Feb 21, 2006
-
-
Tom Lane authored
as Tru64's. Per previous discussion.
-
- Feb 15, 2006
-
-
Tom Lane authored
platforms (it does exist on HPUX, for one). We could probably even make this a test for specific AIX versions, but I don't know which ones need it.
-
- Feb 10, 2006
-
-
Peter Eisentraut authored
-
- Feb 07, 2006
-
-
Peter Eisentraut authored
that works out...
-
- Feb 04, 2006
-
-
Bruce Momjian authored
have the directory for the configure test.
-
Peter Eisentraut authored
-
- Feb 03, 2006
-
-
Bruce Momjian authored
MemSet on AIX by setting MEMSET_LOOP_LIMIT to zero. Add optimization to skip MemSet tests in MEMSET_LOOP_LIMIT == 0 case and just call memset() directly.
-
- Jan 18, 2006
-
-
Tom Lane authored
assuming it always is on Darwin. Per report from Neil Brandt.
-
- Jan 12, 2006
-
-
Tom Lane authored
It seems that recent gcc versions can optimize away calls to these functions even when the functions do not exist on the platform, resulting in a bogus positive result. Avoid this by using a non-constant argument and ensuring that the function result is not simply discarded. Per report from François Laupretre.
-