-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
libArcus.so SONAME and .so.VERSION don't match #43
Comments
I remember there was a discussion about this already in the past. The reason is as far as I remember that libArcus has actually it's own version/API. We only tag it with the same version as Cura because it is the only software at the moment which uses it. |
I don't really mind myself, but there may be confusion or even breakage around this. In particular, I am currently in the process of preparing Debian packages of all the Cura components, and the dependencies should be "correct" there. A library version that falls outside the schema (i.e. package version != library version) could confuse people. But I'll have to consult with some Debian maintainers first. |
Hope you don't forget that there are already packaging files around.
Mit freundlichen Grüßen/With kind regards
- Thomas Karl Pietrowski
|
There are? |
I currently maintain a Ubuntu PPA and you can find all packaging files at thopiekar/Cura-packaging 😉 |
I see.
|
You can open issues there if you like and, if there are improvements, feel free to send PR's 😉 (The discussion about the packaging files is off-topic here 😉 ) |
@onitake As far as I know, there should be no problems if you create a separate package for libArcus. Debian already splits up a lot of things (including things I find really inconvenient like QtQuick plugins). Of course, the maintenance burden might be higher, but libArcus does not see that much change, one of the reasons I want to decouple it from Cura. |
Re-reported as #52 - there is more technical insight there, therefore I'm closing this issue. |
When building libArcus 2.1.3, the SONAME gets (correctly) set to libArcus.so.2, but the library itself is named libArcus.so.1.0.0.
While this inconsistency does not cause any immediate problems, it's a bad idea and should be fixed.
This line:
set(ARCUS_VERSION 1.0.0)
should read:
set(ARCUS_VERSION 2.1.3)
The text was updated successfully, but these errors were encountered: