diff options
author | Bruce Momjian | 2002-10-09 16:21:54 +0000 |
---|---|---|
committer | Bruce Momjian | 2002-10-09 16:21:54 +0000 |
commit | 33a6b67b517e55908fa8ad96d5e8a3aaac5c751d (patch) | |
tree | 95bea3a9ac837afb7a9247aa98a94a10bcb0c490 /doc/FAQ_AIX | |
parent | ba8e20a6dd1de393e2eeab9e6cb70edd8115ca61 (diff) |
> > > > and mb conversions (pg_ascii2mic and pg_mic2ascii not
> > > > found in the postmaster and not included from elsewhere)
> >
> > shared libs on AIX need to be able to resolve all symbols at linkage time.
> > Those two symbols are in backend/utils/SUBSYS.o but not in the postgres
> > executable.
>
> They are defined in backend/utils/mb/conv.c and declared in
> include/mb/pg_wchar.h. They're also linked into the
> postmaster. I don't see anything unusual.
Attached is a patch to fix the mb linking problems on AIX. As a nice side effect
it reduces the duplicate symbol warnings to linking libpq.so and libecpg.so
(all shlibs that are not postmaster loadable modules).
Please apply to current (only affects AIX).
The _LARGE_FILES problem is unfortunately still open, unless Peter
has fixed it per his recent idea.
Zeugswetter Andreas SB SD
Diffstat (limited to 'doc/FAQ_AIX')
-rw-r--r-- | doc/FAQ_AIX | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/FAQ_AIX b/doc/FAQ_AIX index 74a1fd57688..8d6d346ed8b 100644 --- a/doc/FAQ_AIX +++ b/doc/FAQ_AIX @@ -1,5 +1,5 @@ From: Zeugswetter Andreas <ZeugswetterA@spardat.at> -Fri Feb 1 17:24:51 NFT 2002 +Fri Sep 27 12:33:36 MSZ 2002 On AIX 4.3.2 PostgreSQL compiled with the native IBM compiler xlc (vac.C 5.0.1) passes all regression tests. @@ -22,6 +22,9 @@ which you can safely ignore. Compiling PostgreSQL with gcc (2.95.3) on AIX also works. Use the configure flags: --with-CC=gcc +You need libm.a that is in the fileset bos.adt.libm (try following command) +$ lslpp -l bos.adt.libm + Since the mktime() function does not work on AIX for dates before 1970, all localtime formatted datetimes will not use summer time for dates before 1970. |