diff options
author | Thomas G. Lockhart <lockhart@fourpalms.org> | 1999-09-14 15:34:49 +0000 |
---|---|---|
committer | Thomas G. Lockhart <lockhart@fourpalms.org> | 1999-09-14 15:34:49 +0000 |
commit | 408e6e02ef123fc56921b743671b22389e104d81 (patch) | |
tree | 8d324ecc083c51192b00af3d95225b19e66f6724 /doc/FAQ_AIX | |
parent | 2ee735ca2127092d378d4191a188aa2073eb794a (diff) | |
download | postgresql-408e6e02ef123fc56921b743671b22389e104d81.tar.gz |
Update from Andreas Zeugswetter <andreas.zeugswetter@telecom.at>
for v6.5.2 info.
Diffstat (limited to 'doc/FAQ_AIX')
-rw-r--r-- | doc/FAQ_AIX | 67 |
1 files changed, 25 insertions, 42 deletions
diff --git a/doc/FAQ_AIX b/doc/FAQ_AIX index 66eda06922..56d1dd5df0 100644 --- a/doc/FAQ_AIX +++ b/doc/FAQ_AIX @@ -1,51 +1,34 @@ -From - Thu May 27 03:10:25 1999 -Received: from localhost (lockhart@localhost [127.0.0.1]) - by localhost (8.8.7/8.8.7) with ESMTP id RAA08251 - for <lockhart@localhost>; Wed, 26 May 1999 17:49:20 GMT -Received: from apop-server.alumni.caltech.edu - by localhost with POP3 (fetchmail-4.7.9) - for lockhart@localhost (single-drop); Wed, 26 May 1999 17:49:20 +0000 (UTC) -Received: from gandalf.telecom.at (gandalf.telecom.at [194.118.26.84]) - by alumnus.caltech.edu (8.9.1/8.9.1) with ESMTP id KAA01676 - for <lockhart@alumni.caltech.edu>; Wed, 26 May 1999 10:46:19 -0700 (PDT) -Received: from sdexcgtw01.sd.spardat.at (sdexcgtw01.sd.spardat.at [172.18.99.31]) - by gandalf.telecom.at (xxx/xxx) with ESMTP id MAA12220; - Wed, 26 May 1999 12:02:50 +0200 -Received: by sdexcgtw01.f000.d0188.sd.spardat.at with Internet Mail Service (5.5.2448.0) - id <K49AQPB3>; Wed, 26 May 1999 12:02:51 +0200 -Message-ID: <219F68D65015D011A8E000006F8590C60267B37B@sdexcsrv1.f000.d0188.sd.spardat.at> From: ZEUGSWETTER Andreas IZ5 <Andreas.Zeugswetter@telecom.at> To: "'Thomas Lockhart'" <lockhart@alumni.caltech.edu> Cc: "'hackers@postgresql.org'" <hackers@postgresql.org> -Subject: AW: [HACKERS] Call for updates! -Date: Wed, 26 May 1999 12:02:48 +0200 -MIME-Version: 1.0 -X-Mailer: Internet Mail Service (5.5.2448.0) -Content-Type: text/plain -X-UIDL: 220301b41f1310903e8d55cb7ecc5f4b -X-Mozilla-Status: 8001 -X-Mozilla-Status2: 00000000 - +Subject: Re: [HACKERS] Call for updates! +Date: Tue, 14 September 1999 > Hi. I'd like to update the ports list in the docs to include > references to v6.5 for the various platforms for which PostgreSQL-6.5b > has been tested. -> -Current CVS (after pgindent) compiles and regresses ok on AIX 4.3.2 -using the IBM compiler. It has the following problems: -1. AIX has int8,int16,int32,int64 in /usr/include/inttypes.h - --> configure fails to find snprintf support for int8 (because it -includes stdio.h) - I feel this is an IBM problem. I changed my inttypes.h -2. No AIX in Makefile.shlib --> plpgsql.so is not built / no rule. - a number of other platforms are also missing there - a working rule is often in Makefile.port, but only for a single -object - not multiple, which plpgsql has. - The single object rule in Makefile.aix can be used to make a -plpgsql.so - from libplpgsql.a. I built it manually. -3. libpq++ does not work because xlC does not have the string type/class ? + +PostgreSQL 6.5.2 compiles and regresses ok on AIX 4.3.2 +using the IBM compiler. +gcc has problems with shared libs that are not easily resolved. + +The following regression tests fail because of different rounding +behavior or error messages: +int2 .. failed -- same as int2-i386-netbsd.out +int4 .. failed -- same as int4-i386-netbsd.out +geometry .. failed -- Some Zero Values with minus sign (-0) +abstime .. failed +tinterval .. failed +horology .. failed -Andreas +It has the following problems: + +1. AIX has int8,int16,int32,int64 in /usr/include/inttypes.h + --> configure fails to find snprintf support for int8 + (because it includes stdio.h) + I feel this is an IBM problem. I changed my /usr/include/inttypes.h + Either do that or comment out int8-int32 in src/include/c.h. + +2. libpq++ does not work because xlC does not have the string and bool classes. + it does compile/work with gcc |