Re: [PORTS] Solaris SONAME not matching libraries
Zdenek Kotala <[email protected]> Tue, 29 May 2007 14:16:48 +0200
| Newsgroups | gmane.comp.db.postgresql.ports |
|---|---|
| Message-ID | <[email protected]> |
Tom Lane wrote: > Mark Round <[email protected]> writes: >> As you can see, the file is installed with the name "plpgsql.so", >> although it's SONAME according to elfdump is set to libplpgsql.so.1. >> Why the discrepancy ? > > It's an artifact of the Makefile rules we use to generate shared > libraries --- Makefile.shlib insists on building any shared library > under the name 'libsomething'. Is it important enough to fix? I think it is minor bug. SONAME is used by linker to setup dependencies (NEEDED) in a final binary. Plpgsql is loaded dynamically and postmaster is not linked with this library directly. It means that this problem does not occur anywhere. I don't expect that somebody will link these libraries and create separate binary. However, if I look into lib directory there are only five libraries with lib prefix and 60 without prefix. I suggested to introduce SO_PREFIX variable which will be used for affected five libraries in their makefiles. And also adjust pgxs.mk to keep name untouched. Zdenek ---------------------------(end of broadcast)--------------------------- TIP 1: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to [email protected] so that your message can get through to the mailing list cleanly