-
Notifications
You must be signed in to change notification settings - Fork 153
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
Need install cases for SunOS (Solaris) #26
Comments
The mentioned refactoring has been proposed in #25. |
@mehayden Please let us know if we can close this issue. |
@HashNuke The latest install script does not check for string |
@mehayden But I guess it would not be to difficult now to add support for such platforms if one needs them … 😉 |
@mehayden is this still an issue? If so do you know enough to create a PR? I'd like to get this issue resolved if it hasn't already been. |
The SunOS operating_system and cpu_type is not detected in the functions:
os_based_configure_options(),
get_download_file_path(),
get_download_url()
A match on substring "SunOS" from "uname -a" could be used to detect the operating system and "isainfo-b" could be used to get "64" or "32" to match on.
Also, it appears the operating_system variable is never initialized in get_download_file_path().
Here is a diff of a version which worked for me against master 2/16/17, although some refactoring to remove duplicate code seems warranted if more architectures are to be added:
The text was updated successfully, but these errors were encountered: