vermaneerajin / leptonica

Automatically exported from code.google.com/p/leptonica
0 stars 0 forks source link

.so version number is 0.0.0 #47

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
The version number of the .so library was not set in release 1.67, so it 
defaulted to 0.0.0.  This causes link problems with any application that 
requires a version number larger than 0.0.0.

Note also that the .so library version number is not supposed to correspond to 
the release number.  Guidelines for setting the .so version can be found here:

    http://sourceware.org/autobook/autobook/autobook_91.html#SEC91

The plan is for 1.68 to have version number 2.0.0.  It will then build
properly with any application that requires a version number less than or equal 
to 2.0.0.

The fix is to add this line to Makefile.am in the parent directory:

    liblept_la_LDFLAGS = -version-info 2:0:0

Original issue reported on code.google.com by dan.bloo...@gmail.com on 1 Dec 2010 at 10:06

GoogleCodeExporter commented 8 years ago
fixed in 1.68

Original comment by dan.bloo...@gmail.com on 16 Mar 2011 at 12:08