When building 1.7.0 for Arch Linux, I ran into the problem, that in configure.ac the LT_RELEASE variable is substituted by gtkiostream_major_version.gtkiostream_minor_version.gtkiostream_micro_version.
However, none of those variables are set anywhere, which leads to very weird shared object names.
Meanwhile LT_CURRENT is substituted by gtkiostream_current_version:gtkiostream_revision_version:gtkiostream_age_version. Those variables are set. Should they also be used to substitute LT_RELEASE (e.g. gtkiostream_current_version.gtkiostream_revision_version.gtkiostream_age_version)?
Or should LT_RELEASE somehow be dropped entirely? This is quite confusing :)
When building
1.7.0for Arch Linux, I ran into the problem, that inconfigure.actheLT_RELEASEvariable is substituted bygtkiostream_major_version.gtkiostream_minor_version.gtkiostream_micro_version.However, none of those variables are set anywhere, which leads to very weird shared object names.
Meanwhile
LT_CURRENTis substituted bygtkiostream_current_version:gtkiostream_revision_version:gtkiostream_age_version. Those variables are set. Should they also be used to substituteLT_RELEASE(e.g.gtkiostream_current_version.gtkiostream_revision_version.gtkiostream_age_version)?Or should
LT_RELEASEsomehow be dropped entirely? This is quite confusing :)