After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 54953 - libxslt installs as version 0.0.0 under Linux
libxslt installs as version 0.0.0 under Linux
Status: VERIFIED FIXED
Product: libxslt
Classification: Platform
Component: general
unspecified
Other Linux
: Normal normal
: ---
Assigned To: Daniel Veillard
Daniel Veillard
Depends on:
Blocks:
 
 
Reported: 2001-05-19 20:11 UTC by stinney
Modified: 2009-08-15 18:40 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description stinney 2001-05-19 20:11:18 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!
Comment 1 Daniel Veillard 2001-05-19 20:32:50 UTC
No idea, I have tried to understand why but can't I'm using
the exact same configuration mechanism for both libs !

Daniel
Comment 2 Daniel Veillard 2001-05-22 13:10:35 UTC
Found it !!!
Simply adding:

libxslt_la_LDFLAGS = -version-info @LIBXSLT_VERSION_INFO@

to libxslt/Makefile.am is sufficient,

Daniel
Comment 3 Daniel Veillard 2001-06-06 09:39:51 UTC
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