Thread: ...

...

From
Peter Eisentraut
Date:
Tom, I suspect that this is your work:
./psql: error in loading shared libraries : undefined symbol:
createPQExpBuffer

which happens if you run several versions of everything all at once and
forget to set all your lib paths right.

How about version numbering libpq properly? It has been 2.0 ever since I
can remember (not very long :). At least do ++0.0.1 when you change
something. Is there any particular reason why this is not done?

-- 
Peter Eisentraut - peter_e@gmx.net
http://yi.org/peter-e/



...

From
Tom Lane
Date:
Peter Eisentraut <peter_e@gmx.net> writes:
> How about version numbering libpq properly? It has been 2.0 ever since I
> can remember (not very long :). At least do ++0.0.1 when you change
> something. Is there any particular reason why this is not done?

We've been pretty lax about version numbering during development cycles.
It could be a problem if you are keeping several versions around,
I suppose.  But I think what you are asking for is a major-version bump
anytime a subroutine gets added (else it's not going to help a dynamic
linker distinguish two versions anyway).  That seems not very workable.
        regards, tom lane