summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-03-27> Kinda looks like Ian broke the compile-in-source-dir case whileBruce Momjian
> making the compile-in-separate-dir case work. Tut tut. Yes. My apologies. This patch is one way to fix things. Ian
2001-03-27The following patch updates the FAQ_AIX and makes C++ code work withBruce Momjian
more recent versions of the IBM C++ compiler (now called VisualAge C++). The C++ part was previously broken (g++ and xlC), thus this is zero risk. Only AIX specific parts are touched (1 Makefile.shlib line (link with $(COMPILER ) instead of $(CC) and one shell script line (parameter -C to nm to not demangle C++ symbo ls for .exp file)). I thus ask you to please apply this patch before release. With or without this patch RC1 on AIX 4.3.2 RS6000 passes "gmake check" for both the native compiler vac.C 5.0.1 and gcc 2.95.2 :-) Andreas
2001-03-27Add changes from Mikhail Terekhov <terekhov@emc.com>.D'Arcy J.M. Cain
Use Extension method from distutils. Cleaned up mismatched indentation styles while I was at it.
2001-03-27Add checking for valid database encoding.Tatsuo Ishii
2001-03-27ODBC source code cleanup. Mostly alignment of #define constants.Bruce Momjian
2001-03-27Spell __volatile__ correctly.Tom Lane
2001-03-26OpenBSD resultmap change:Bruce Momjian
I posted this to the list a few days ago, but it was not addressed. Can someone please make the changes to the src/test/regress/resultmap? Thanks. - brandon
2001-03-26Add period to message.Bruce Momjian
2001-03-26Change message to _the_ administrator. There is only one administrativeBruce Momjian
account. This connection has been terminated by the administrator.
2001-03-26Add #define HAVE_ATEXIT, per report from Magnus.Tom Lane
2001-03-26pqsignal call needs to be #ifndef WIN32, per report from Magnus.Tom Lane
2001-03-26Add multibyte supportHiroshi Inoue
2001-03-26Fix typoTatsuo Ishii
2001-03-25Fix unportable assumptions about alignment of local char[n] variables.Tom Lane
2001-03-25Improve comments for xlog item size #defines.Tom Lane
2001-03-25Update the changes for version 3.2.D'Arcy J.M. Cain
2001-03-25Document the --with-python flag as a simpler way of installing theD'Arcy J.M. Cain
PyGreSQL module when installing PostgreSQL. Document the location of the WIN32 binaries.
2001-03-25Update TODO list.Bruce Momjian
2001-03-25Pick up any extra -I options for Python build.Peter Eisentraut
2001-03-25Fix unportable assumptions about alignment of local char[n] variables.Tom Lane
2001-03-25The regexp pattern characters ^ and $ should be explained as matchingTom Lane
at the beginning and end of the input string, not the beginning and end of "a line", since Postgres does not allow them to match at newline characters in the data.
2001-03-25Re-order declarations to un-break the non-HAS_TEST_AND_SET case.Tom Lane
2001-03-25spell fixPeter Eisentraut
2001-03-25Allow building documentation outside source tree.Peter Eisentraut
from Ian Lance Taylor
2001-03-25Fix code that incorrectly assumed a 'char foo[N]' local variable wouldTom Lane
be aligned on a word boundary. Per report from Steve Nicolai.
2001-03-24Make less misleading message for failed + ignored tests.Peter Eisentraut
2001-03-24Portability fix from Steve Nicolai.Tom Lane
2001-03-24minor copy editingPeter Eisentraut
2001-03-24Disable pg_upgrade.Peter Eisentraut
2001-03-24Hadn't built on a PARISC 1.1 box in a long time ... but when I did,Tom Lane
it turned out that the libpq makefile chokes on '-L /lib/pa1.1'. Need to remove the space so filter rule works.
2001-03-24Update info about mailing lists, make a few other minor improvements.Tom Lane
2001-03-24Update to the current state of platform support.Thomas G. Lockhart
Still need some tested for the 7.1 release.
2001-03-24Fix up wording slightly. No change in content.Thomas G. Lockhart
2001-03-24update the ChangeLog in preparation for release ...Marc G. Fournier
2001-03-24Miscellaneous updates and minor copy-editing.Tom Lane
2001-03-23Doc update from Roberto Mello: improved versions of instr() examples.Tom Lane
2001-03-23When using 'long long int' for int64 type, check to see if the compilerTom Lane
accepts nnnLL syntax for long long constants. If so, decorate the CRC64 constants with LL to avoid warnings and/or erroneous results from certain non-standards-compliant compilers.
2001-03-23Mark exception and assert global variables as DLLIMPORT, so that plpgsqlTom Lane
can be compiled with asserts enabled on Windoze.
2001-03-23Update TODO list.Bruce Momjian
2001-03-23Add checking for strtoul. SunOS4 does not have it.Tatsuo Ishii
2001-03-23Fix comments that were mis-wrapped, for Tom Lane.Bruce Momjian
2001-03-23Fix SPI example to reflect new-style calling convention for textout().Tom Lane
2001-03-23Fix checking of file operations in demo ('files') output format.Philip Warner
2001-03-23Fix problems with coredumps due to ^C when longjmp buffer isn't valid.Tom Lane
Now, we will only catch ^C at times when it is valid.
2001-03-22Fix Joubert's complaint that int8-sized numeric literals are mishandledTom Lane
on Alpha (because parser mistakenly assumes that a nonoverflow result from strtol means the value will fit into int4). A scan for other uses of strtol and strtoul found a couple other places with the same mistake; fix them too. The changes are all conditional on HAVE_LONG_INT_64 to avoid complaints from compilers that think x != x is a silly test (cf. pg_atoi).
2001-03-22Run pgindent on _int.c, for Tom Lane. I had skipped this file becauseBruce Momjian
of a complex macro that pgindent complained about. Hand-adjusted macro for pgindent run.
2001-03-22geometry tests 'FAILED' from a precision standpoint, but differently thenMarc G. Fournier
what solaris-precision takes into account ... its possible that solaris-precision is 'stale', but created a new one "just in case" ...
2001-03-22Remove dashes in comments that don't need them, rewrap with pgindent.Bruce Momjian
2001-03-22pgindent run. Make it all clean.Bruce Momjian
2001-03-21correctionPeter Eisentraut