From c9cbe9965a958beb83e166b3447787cbcd89c243 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Thu, 21 May 2026 12:52:04 -0700 Subject: [PATCH] dms: include target configuration header crc_csum.cpp uses UAE target types through the DMS headers. Include sysconfig.h first so those target type definitions are available before the archive declarations are parsed. --- archivers/dms/crc_csum.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archivers/dms/crc_csum.cpp b/archivers/dms/crc_csum.cpp index ae5c049a..9a3f021b 100644 --- a/archivers/dms/crc_csum.cpp +++ b/archivers/dms/crc_csum.cpp @@ -9,6 +9,7 @@ */ +#include "sysconfig.h" #include "cdata.h" #include "crc_csum.h" @@ -66,4 +67,3 @@ USHORT dms_CreateCRC(UCHAR* mem, ULONG size ){ return CRC; } - -- 2.47.3