GNOME Bugzilla – Bug 54953
libxslt installs as version 0.0.0 under Linux
Last modified: 2009-08-15 18:40:50 UTC
It would be nicer if libxslt installed with the version number, as libxml2 does: rwxrwxrwx ... May 14 23:19 /usr/lib/libxml2.so -> libxml2.so.2.3.8 rwxrwxrwx ... May 18 16:02 /usr/lib/libxslt.so -> libxslt.so.0.0.0 Steve p.s. Thanks for the excellent package!
No idea, I have tried to understand why but can't I'm using the exact same configuration mechanism for both libs ! Daniel
Found it !!! Simply adding: libxslt_la_LDFLAGS = -version-info @LIBXSLT_VERSION_INFO@ to libxslt/Makefile.am is sufficient, Daniel
Fixed in the new 0.11.0 set of RPMs, issue considered closed gnome:~ -> ls -l /usr/lib/libxslt.so* lrwxrwxrwx 1 root root 17 Jun 7 05:31 /usr/lib/libxslt.so -> libxslt.so.0.11.0 lrwxrwxrwx 1 root root 17 Jun 7 05:31 /usr/lib/libxslt.so.0 -> libxslt.so.0.11.0 -rwxr-xr-x 1 root root 132508 Jun 1 11:24 /usr/lib/libxslt.so.0.11.0 gnome:~ -> Daniel