Re: PostgreSQL 7.3 installation on RedHat 8.0 fails - Mailing list pgsql-admin

From Tom Lane
Subject Re: PostgreSQL 7.3 installation on RedHat 8.0 fails
Date
Msg-id 9404.1039825483@sss.pgh.pa.us
Whole thread Raw
In response to PostgreSQL 7.3 installation on RedHat 8.0 fails  (Murthy Kambhampaty <murthy.kambhampaty@goeci.com>)
List pgsql-admin
Murthy Kambhampaty <murthy.kambhampaty@goeci.com> writes:
> "/home/postgres/postgresql-7.3/src/test/regress/./tmp_check/install//usr/loc
> al/pgsql/bin/pg_encoding: relocation error:
> /home/postgres/postgresql-7.3/src/test/regress/./tmp_check/install//usr/loca
> l/pgsql/bin/pg_encoding: undefined symbol: pg_char_to_encoding

This usually means that the dynamic linker is picking up a version of
libpq.so that doesn't have MULTIBYTE support, but the program you are
trying to run requires MULTIBYTE.  Fix: update your ldconfig settings
so that the thing finds the version of libpq.so you just built, rather
than whatever old version it's finding.

pg_regress tries to get the system to notice the libpq.so that it
installed in the tmp_check/install area, but I believe it's quite a
ways short of making that work correctly everywhere.

            regards, tom lane

pgsql-admin by date:

Previous
From: Murthy Kambhampaty
Date:
Subject: [SOLVED] RE: PostgreSQL 7.3 installation on RedHat 8.0 fails
Next
From: Peter Eisentraut
Date:
Subject: Re: [SOLVED] RE: PostgreSQL 7.3 installation on RedHat 8.0