Aditya Siram

Results 138 comments of Aditya Siram

I tried it with `stack` on `Mojave`. I'll install a `cabal` environment tomorrow and try to reproduce. Thanks for the report!

Awesome that the `gcc` issue is resolved. Thanks @sboosali! I'll add it to the docs. The issue you're having with the brew version of FLTK is to be expected. The...

Thanks for letting me know. I'll add it to the docs.

The reason I'm recommending building from scratch using `./configure --enable-gl --enable-shared --enable-localjpeg --enable-localzlib --enable-localpng` is to make sure: 1. GL support is enabled 2. both the shared and static versions...

Are you proposing that we should bundle FLTK and having Cabal run the `configure ...; make; make install` step?

If you look in `configure.ac` I do use `fltk-config` to populate the compiler options. But how does `pacman -S fltk` resolve the issue of having minimal runtime dependencies? It seems...

Oh wow, I just checked and you're right about the dependencies. I must have totally missed those. I wonder why it's not picking up on the static versions of those...

I just pushed a fix that (hopefully) removes those runtime FLTK dependencies. Unfortunately now the GHCi REPL doesn't work on Windows but I feel this is more important. Please test...

Yes and I have no idea how to get rid of that. See the section on "Packaging A Windows Executable" here http://hackage.haskell.org/package/fltkhs-0.5.0.8/docs/Graphics-UI-FLTK-LowLevel-FLTKHS.html#g:8.

I did a brief experiment with this and got: ``` ld.exe: cannot find -lstdc++ ld.exe: cannot find -lpthread ``` Let me know if you come up with anything better. Thanks...