You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fpc/fpc-3.2.2--pas2jni-cthreads...

28 lines
665 B

From 355ac3c7e2bb7bbdee1b16d41cad8e3e0c4e2728 Mon Sep 17 00:00:00 2001
From: suve <veg@svgames.pl>
Date: Wed, 16 Mar 2022 23:01:09 +0100
Subject: [PATCH] Make pas2jni use cthreads on Unices
---
utils/pas2jni/pas2jni.pas | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/utils/pas2jni/pas2jni.pas b/utils/pas2jni/pas2jni.pas
index c0a8d67917..c89fe92791 100644
--- a/utils/pas2jni/pas2jni.pas
+++ b/utils/pas2jni/pas2jni.pas
@@ -22,7 +22,9 @@
{$mode objfpc}{$H+}
program pas2jni;
-uses SysUtils, Classes, writer, ppuparser;
+uses
+ {$IFDEF UNIX}cthreads,{$ENDIF}
+ SysUtils, Classes, writer, ppuparser;
var
w: TWriter;
--
GitLab