-
Couldn't load subscription status.
- Fork 58
Handle transitive dependencies with Julia master #372
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -23,16 +23,16 @@ import Graphics: arc, clip, clip_preserve, close_path, creategc, device_to_user! | |
| import Base: copy, fill | ||
|
|
||
| libcairo_version = VersionNumber(unsafe_string( | ||
| ccall((:cairo_version_string,Cairo.libcairo),Cstring,()) )) | ||
| ccall((:cairo_version_string,libcairo),Cstring,()) )) | ||
| libpango_version = VersionNumber(unsafe_string( | ||
| ccall((:pango_version_string,Cairo.libpango),Cstring,()) )) | ||
| ccall((:pango_version_string,Pango_jll.libpango),Cstring,()) )) | ||
| if !Sys.iswindows() | ||
| libpangocairo_version = VersionNumber(unsafe_string( | ||
| ccall((:pango_version_string,Cairo.libpangocairo),Cstring,()) )) | ||
| ccall((:pango_version_string,Pango_jll.libpango),Cstring,()) )) | ||
| libgobject_version = VersionNumber( | ||
| unsafe_load(cglobal((:glib_major_version, Cairo.libgobject), Cuint)), | ||
| unsafe_load(cglobal((:glib_minor_version, Cairo.libgobject), Cuint)), | ||
| unsafe_load(cglobal((:glib_micro_version, Cairo.libgobject), Cuint))) | ||
| unsafe_load(cglobal((:glib_major_version, Glib_jll.libglib), Cuint)), | ||
| unsafe_load(cglobal((:glib_minor_version, Glib_jll.libglib), Cuint)), | ||
| unsafe_load(cglobal((:glib_micro_version, Glib_jll.libglib), Cuint))) | ||
|
Comment on lines
-31
to
+35
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Honestly I think this was right. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. And would probably work on Windows, too. |
||
| end | ||
|
|
||
| import Base.show | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Try removing this? My hunch is that this was necessary because the wrong library was being referenced.