10-07-2021, 06:02 PM
Problem Solved: YES, Indy10 works on the Raspberry Pi, when cthreads is included.
The auto-generated Program file contained:
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
But clearly the UseCThreads was not defined, so the cthreads was not either. I did not expect that.
Now cthreads is part of the program, it works!
The auto-generated Program file contained:
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
But clearly the UseCThreads was not defined, so the cthreads was not either. I did not expect that.
Now cthreads is part of the program, it works!