Mohammed Alyousef

Results 123 comments of Mohammed Alyousef

I have found your issue in the FreeRDP repo and downloaded the source code. I'm not familiar with FreeRDP unfortunately. You can try moving the gui creation code to later...

I don’t think it’s an issue if static linking. I think it might be an issue in initializing clientEntryPoints function pointer table, specifically the ClientNew pointer. Unfortunately I can’t find...

I'm not sure what might be the issue unfortunately. You can try linking with a shared build of libcfltk and see if that helps.

What about when you comment out `cfltk()` in main, but still link cfltk?

It might be a binary compatibility issue between FLTK’s dependencies and FreeRDP’s dependencies.

You might prefer to try FLTK 1.3.8 directly instead of cfltk. You only need to change the file extension to cpp, and remove cfltk from CMake. The rest should be...

CMake should be able to easily handle a mixed C/C++ codebase. Supporting FLTK 1.3.x from cfltk would require much work, removing a lot of the wrapper and everything related to...

The problem is that it's not sure to work with FLTK 1.3.8 since 1.3.1 is 10 years old now.

Thank you :) Can you can try the ˋ-DCFLTK_BUILD_SHARED` flag when configuring cmake.

I have updated the CMakeLists.txt to add ```cmake set_target_properties(cfltk PROPERTIES POSITION_INDEPENDENT_CODE ON) ``` when building a shared library. Can you try again after pulling the last changes?