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