You are not logged in.
version 1.18.5053 breaks compilation if USE_WINIOCP is not defined.
this would fix the issue:
index 85e41cec..2b2e3c10 100644
@@ -1018,3 +1018,5 @@ type
fBodyOwnThreads: integer;
+ {$ifndef USE_WINIOCP}
function QueueLength: integer; override;
+ {$endif}
// here aContext is a pointer(TSocket=THandle) value
@@ -7127,2 +7129,3 @@ end;
+{$ifndef USE_WINIOCP}
function TSynThreadPoolTHttpServer.QueueLength: integer;
@@ -7133,2 +7136,3 @@ begin
end;
+{$endif}
Offline
Yes, sorry for the issue.
It is fixed (also for FPC) by https://synopse.info/fossil/info/cb774010da
Offline