Workaround : Modify original lines 450 and 451 of the ./generic/tixGrSort.c file as below statements, then configure/make/make install again. 450 : // order = strtol(sortInterp->result, &end, 0); : order = strtol(TclGetStringResult(sortInterp), &end, 0); 451 : // if ((end == sortInterp->result) || (end != 0)) { : if ((end == TclGetStringResult(sortInterp)) || (end != 0)) { ...* Because there is a article in tcl.h file / ----------------------------------------------------------------------------...
fix error=implicit-function-declaration
Incompatible pointer types, const correctness (GCC 14/Clang 16 compilation fixes)
Implicit int declarations are incompatible with C99
Did you specify the --with-tcl and --with-tk options to configure? I know this is a bit late :-) but I just needed it on Win10 and built it using mingw-gcc.
Tix configure error with mingw under Windows 10
Trying to attach a patch via e-mail.
Here is a patch (inlined, attaching doesn't work for me). ? hlist_header_exists.patch...
HList's "header exists" command doesn't work due a typo
Crash in FindElementAtPosition
ComboBox flashes and disappears under OS X
moved to func scope.
Applied post-8.4.3.
Applied post-8.4.3.
Applied changes to tixGrSort.c to remove improper result access. I think this was...
The direct 'result' access for interps has been deprecated for a while, and removed...