Bruce Momjian
ec12e80019
> Kinda looks like Ian broke the compile-in-source-dir case while
...
> making the compile-in-separate-dir case work. Tut tut.
Yes. My apologies. This patch is one way to fix things.
Ian
25 years ago
Bruce Momjian
341cb70044
The following patch updates the FAQ_AIX and makes C++ code work with
...
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
25 years ago
D'Arcy J.M. Cain
c4d354c271
Add changes from Mikhail Terekhov <terekhov@emc.com>.
...
Use Extension method from distutils.
Cleaned up mismatched indentation styles while I was at it.
25 years ago
Tatsuo Ishii
c252c972f6
Add checking for valid database encoding.
25 years ago
Bruce Momjian
12ceb11182
ODBC source code cleanup. Mostly alignment of #define constants.
25 years ago
Tom Lane
ff71301806
Spell __volatile__ correctly.
25 years ago
Bruce Momjian
153237cc45
OpenBSD resultmap change:
...
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
25 years ago
Bruce Momjian
33881e4f68
Add period to message.
25 years ago
Bruce Momjian
099b60b352
Change message to _the_ administrator. There is only one administrative
...
account.
This connection has been terminated by the administrator.
25 years ago
Tom Lane
7e733dc960
Add #define HAVE_ATEXIT, per report from Magnus.
25 years ago
Tom Lane
b8c2421ef6
pqsignal call needs to be #ifndef WIN32, per report from Magnus.
25 years ago
Hiroshi Inoue
80c6843e6b
Add multibyte support
25 years ago
Tatsuo Ishii
46f4cdeb7a
Fix typo
25 years ago
Tom Lane
ccd415c63f
Fix unportable assumptions about alignment of local char[n] variables.
25 years ago
Tom Lane
571dbe4606
Improve comments for xlog item size #defines.
25 years ago
D'Arcy J.M. Cain
5fb00d424a
Update the changes for version 3.2.
25 years ago
D'Arcy J.M. Cain
f99e2003f1
Document the --with-python flag as a simpler way of installing the
...
PyGreSQL module when installing PostgreSQL.
Document the location of the WIN32 binaries.
25 years ago
Bruce Momjian
96ed4d4c88
Update TODO list.
25 years ago
Peter Eisentraut
3206e5225f
Pick up any extra -I options for Python build.
25 years ago
Tom Lane
1ed61b3a9c
Fix unportable assumptions about alignment of local char[n] variables.
25 years ago
Tom Lane
39ceedf5e0
The regexp pattern characters ^ and $ should be explained as matching
...
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.
25 years ago
Tom Lane
42eaad0575
Re-order declarations to un-break the non-HAS_TEST_AND_SET case.
25 years ago
Peter Eisentraut
bdff9d80dc
spell fix
25 years ago
Peter Eisentraut
b67e7bb1f7
Allow building documentation outside source tree.
...
from Ian Lance Taylor
25 years ago
Tom Lane
00713cb7cb
Fix code that incorrectly assumed a 'char foo[N]' local variable would
...
be aligned on a word boundary. Per report from Steve Nicolai.
25 years ago
Peter Eisentraut
6ba0f31bdd
Make less misleading message for failed + ignored tests.
25 years ago
Tom Lane
f2c8f278b1
Portability fix from Steve Nicolai.
25 years ago
Peter Eisentraut
0967057b5d
minor copy editing
25 years ago
Peter Eisentraut
b420c47434
Disable pg_upgrade.
25 years ago
Tom Lane
5b4045d5d6
Hadn't built on a PARISC 1.1 box in a long time ... but when I did,
...
it turned out that the libpq makefile chokes on '-L /lib/pa1.1'.
Need to remove the space so filter rule works.
25 years ago
Tom Lane
1a9840cd63
Update info about mailing lists, make a few other minor improvements.
25 years ago
Thomas G. Lockhart
f7a4db10b2
Update to the current state of platform support.
...
Still need some tested for the 7.1 release.
25 years ago
Thomas G. Lockhart
15dc7d11ea
Fix up wording slightly. No change in content.
25 years ago
Marc G. Fournier
eb3ef4e070
update the ChangeLog in preparation for release ...
25 years ago
Tom Lane
27b5a8ef0f
Miscellaneous updates and minor copy-editing.
25 years ago
Tom Lane
3311e250cd
Doc update from Roberto Mello: improved versions of instr() examples.
25 years ago
Tom Lane
e458ebfd21
When using 'long long int' for int64 type, check to see if the compiler
...
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.
25 years ago
Tom Lane
32924c1c90
Mark exception and assert global variables as DLLIMPORT, so that plpgsql
...
can be compiled with asserts enabled on Windoze.
25 years ago
Bruce Momjian
aba61c5211
Update TODO list.
25 years ago
Tatsuo Ishii
40f158da48
Add checking for strtoul. SunOS4 does not have it.
25 years ago
Bruce Momjian
7cf952e7b4
Fix comments that were mis-wrapped, for Tom Lane.
25 years ago
Tom Lane
4e911c847c
Fix SPI example to reflect new-style calling convention for textout().
25 years ago
Philip Warner
b1065f8fc2
Fix checking of file operations in demo ('files') output format.
25 years ago
Tom Lane
a062473696
Fix problems with coredumps due to ^C when longjmp buffer isn't valid.
...
Now, we will only catch ^C at times when it is valid.
25 years ago
Tom Lane
b32cac8055
Fix Joubert's complaint that int8-sized numeric literals are mishandled
...
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).
25 years ago
Bruce Momjian
339cd6b9b0
Run pgindent on _int.c, for Tom Lane. I had skipped this file because
...
of a complex macro that pgindent complained about. Hand-adjusted macro
for pgindent run.
25 years ago
Marc G. Fournier
69a2c2bad2
geometry tests 'FAILED' from a precision standpoint, but differently then
...
25 years ago
Bruce Momjian
0686d49da0
Remove dashes in comments that don't need them, rewrap with pgindent.
25 years ago
Bruce Momjian
9e1552607a
pgindent run. Make it all clean.
25 years ago
Peter Eisentraut
6cf8707b82
correction
25 years ago