Re: Looking for mac dylib

Sebastian Pipping <[email protected]> Sun, 21 Sep 2008 18:27:44 +0200
Newsgroups gmane.text.xml.expat.general
Message-ID <[email protected]>
Michael Peters wrote:
> I am looking for the libexpat-1.5.0.dylib for the PowerMac. Does anyone
> have a copy of this library or the source code to build this. I have
> tried 1.5.2 which I think is the current release and we can't get our
> application to run.

In the current <Makefile.in> this line

  VSNFLAG = -version-info @LIBCURRENT@:@LIBREVISION@:@LIBAGE@

using variables from <configure.in>

  LIBCURRENT=6
  LIBREVISION=2
  LIBAGE=5

makes the final soname (1.5.2 in your case).
So if this is important to you, digging in these two files
until you find a match should give the answer to your questions.



Sebastian