-
Notifications
You must be signed in to change notification settings - Fork 134
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
Minimal dbus version? #44
Comments
Oh, so my library made it into Servo, cool :-)
No idea, really, since D-Bus only has online documentation for its latest version, I have no idea when various functions were added. Sorry.
If those are the only functions I need to remove, then I guess I could add some feature that opts out of them? With the drawback that validation will always succeed and potentially things would panic at a later point rather than return a proper error. Would that be a reasonable solution? |
I really don't know if that would be a reasonable solution. For the thing I'm trying to build with Servo, I probably don't need dbus anyway, so maybe they should grow a feature to allow for disabling this part. |
According to DBus's NEWS file, these functions were added in 1.5.12, which makes 1.6.0 the first supported release. |
@djc You might be interested in that the latest version of dbus now has a "no-strings-validation" feature that should enable you to use it on older dbus library version (although I don't know how far back). |
I was trying to compile Servo in a CentOS 6.5 environment, which has dbus-1.2.24-7. Linking fails:
What versions of dbus are supported? Would it be viable to support this version of dbus?
The text was updated successfully, but these errors were encountered: