-
-
Notifications
You must be signed in to change notification settings - Fork 39
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
Allow image formats to be disabled from dillorc #316
Conversation
bd89868
to
bfd2c7b
Compare
@xlex8 could you take a look at this PR? |
bfd2c7b
to
6ccdca0
Compare
This branch is not compiling here: |
Which FLTK version are you using? The method should be available on 1.3.X: https://www.fltk.org/doc-1.3/classFl.html#a7600b0ef3dcd4311850ab4b2988d5d6d |
Stock FLTK 1.3.3 here. Just did a new build of master with no errors, and also some older checkouts, so it seems to be a recent change. |
Right, on 1.3.3 it was not available yet, I need to use Fl::version() instead. https://github.com/fltk/fltk/blob/release-1.3.3/src/Fl.cxx#L135C1-L135C12 Let me do a quick patch so it builds for you too. |
Should be fixed in 486cdad |
Thanks, this PR appears to be working fine now! |
Makes disabling certain formats posible without the need to rebuild Dillo from source. See: #312
The Fl:api_version() method is not available on FLTK 1.3.3 and older, it needs to use Fl::version() instead.
486cdad
to
8169f76
Compare
Makes disabling certain formats posible without the need to rebuild Dillo from source.
See: #312