-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Solaris Kstat library #784
Conversation
This is failing Travis CI tests because it can't find libkstat which is only present on Solaris (SunOS). Either |
Follow the pattern for other platform-specific tests - OSX, unix, and
windows have such (or if the library isn't guaranteed to be installed, make
an explicit check for the library within the test itself by catching an
UnsatisfiedLinkError when trying to load it).
…On Sun, Apr 2, 2017 at 7:50 PM, dbwiddis ***@***.***> wrote:
This is failing Travis CI tests because it can't find libkstat
<http://docs.oracle.com/cd/E23824_01/html/821-1464/libkstat-3lib.html>
which is only present on Solaris (SunOS). Either jna-platform's build.xml
line 154 should exclude the package location I put these classes in (but
I'm not sure how to do that), or I should move the packages, but I'm not
sure the best place to put them.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#784 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAuMreXel3Obc9fSxi1RhRkNO5SwV2f-ks5rsDQrgaJpZM4Mw9-c>
.
|
The Should be ready to merge or, if desired:
|
Thank you - I'm not an expert but I had a quick look at the documentation and the structures and they look sane. Could you please adjust the license headers of the newly added files to align with the AL2.0 + LGPL2.1 and newer combo license. See here: With regard to the utility methods: Most C interfaces feel awkward when called from java and utility methods wrapping them help IMHO. If you think it is worth it, please go ahead. |
Headers updated. I left the utility methods in test since they would have log messages (or |
Unittests run cleanly on solaris 11.3, structures look sane, requested changes to new files were done. Thank you, merged. |
No description provided.