Hi with the git clone https://github.com/fltk/fltk i get Cloning into 'fltk'... warning: templates not found in /usr/share/git-core/templates remote: Enumerating objects: 92570, done. remote: Counting objects: 100% (2620/2620), done. remote: Compressing objects: 100% (1123/1123), done. remote: Total 92570 (delta 1721), reused 2113 (delta 1485), pack-reused 89950 Receiving objects: 100% (92570/92570), 42.09 MiB | 1.28 MiB/s, done. Resolving deltas: 100% (75407/75407), done. /usr/src/fltk > cd fltk /usr/src/fltk/fltk > git checkout branch-1.3 branch 'branch-1.3' set up to track 'origin/branch-1.3'. Switched to a new branch 'branch-1.3' autogen.sh configure --enable-shared make make install /usr/local/lib -rw-r--r-- 1 root root 48325 Jul 04 2024 14:21:52 Fl_File_Chooser2.cxx -rw-r--r-- 1 root root 15407 Jul 04 2024 14:21:52 Fl_File_Chooser.cxx -rw-r--r-- 1 root root 15000 Jul 04 2024 14:21:52 Fl_File_Chooser.fl the problem is 2 parts in dillo - switching from the savedir to /tmp dir when first 'd' pressed and then repeating /tmp/d/tmp/d when another 'd' is pressed the fix only fixes the repeat to /tmp/d/tmp/d when a second d is pressed but the changing from savedir to /tmp/d still happens when first d is pressed your program only shows the second part of the problem (and that part is fixed) since it does the chdir("/tmp") itself and not what happens with dillo when the first 'd' is pressed the fix only fixes the repeat not the initial change to /tmp dir from the savedir On Thu, 4 Jul 2024 19:57:59 +0200 Rodrigo Arias <rodarima@gmail.com> wrote:
On Wed, Jul 03, 2024 at 12:01:47PM -0600, pastebin@gmx.com wrote:
Hi
a little contribution to your code in case someone wants to make a huge statically compiled version of the program :)
g++ -O2 test.cpp-static -o test /usr/local/lib/libfltk.a /usr/local/lib/libX11.a /usr/local/lib/libxcb.a /usr/local/lib/libXft.a /usr/local/lib/libfontconfig.a /lib/libdl.a /usr/local/lib/libXfixes.a /usr/local/lib/libXrender.a /usr/local/lib/libXcursor.a /usr/local/lib/libXinerama.a /usr/local/lib/libXext.a /usr/local/lib/libXau.a /usr/local/lib/libXdmcp.a /usr/local/lib/libfreetype.a /usr/local/lib/libexpat.a /usr/local/lib/libXrender.a /usr/local/lib/libX11.a /usr/local/lib/libXfixes.a /usr/local/lib/libpng.a /lib/libz.a /usr/local/lib/libharfbuzz.a /lib/libbz2.a /lib/libpthread.a
Thanks.
A fix was provided by FLTK developer Albrecht Schlosser:
https://github.com/fltk/fltk/issues/1004#issuecomment-2209144366
You can take the "branch-1.3" branch which also contains the fix (f34719).
$ git clone https://github.com/fltk/fltk $ cd fltk $ git checkout branch-1.3 ...
Can you check it solves your issue? They are waiting for confirmation to close the issue on their side.
Best, Rodrigo. _______________________________________________ Dillo-dev mailing list -- dillo-dev@mailman3.com To unsubscribe send an email to dillo-dev-leave@mailman3.com