From 34b049d8761972a2773d18253bee78c74030e1cf Mon Sep 17 00:00:00 2001 From: pierre Date: Fri, 8 Dec 2006 13:22:40 +0000 Subject: [PATCH] * fix compilation failure in 2.1 branch reason is that cvar was .comm before and is now .bss, you need to explicitly add public to added the .globl that makes the assembler symbol accessible in other objects. git-svn-id: trunk@5558 - --- rtl/go32v2/dpmiexcp.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtl/go32v2/dpmiexcp.pp b/rtl/go32v2/dpmiexcp.pp index f180bc9b49..042331374c 100644 --- a/rtl/go32v2/dpmiexcp.pp +++ b/rtl/go32v2/dpmiexcp.pp @@ -645,7 +645,7 @@ end; var signal_list : Array[0..SIGMAX] of SignalHandler;cvar; - {$ifndef CREATE_C_FUNCTIONS}external;{$endif} + {$ifndef CREATE_C_FUNCTIONS}external;{$else}public;{$endif} {$ifdef CREATE_C_FUNCTIONS} function SIG_ERR(x:longint):longint;[public,alias : '___djgpp_SIG_ERR'];