Files
sleuthkit/sleuthkit-no-bool.patch
Jan Engelhardt f67a48e246 - version update to 4.14.0
* This release REVERTS many changes from 4.13.0. It is more close to 4.12.1 than it is to 4.13.0.
  * It was created from the Dec 3, 2024 ct-3.13.0 tag (28a838d) and has changes from the Sleuth Kit Labs team.
        Added BitLocker support (Windows only)
        Updated LibVMDK and LibVHDI
        Updated to Visual Studio 2019
        Updated logical folder caching
        Java changes listed in the 4.13.0 release
  * Use of the optimize pragma was added to the Java SQLite code (after the 4.13.0 release)
- added patches
  8d710c36a9
  + sleuthkit-no-bool.patch

OBS-URL: https://build.opensuse.org/package/show/security:forensics/sleuthkit?expand=0&rev=38
2025-07-13 10:33:15 +00:00

35 lines
1011 B
Diff

Index: sleuthkit-4.14.0/tsk/base/crc.h
===================================================================
--- sleuthkit-4.14.0.orig/tsk/base/crc.h
+++ sleuthkit-4.14.0/tsk/base/crc.h
@@ -82,6 +82,8 @@ Status : Copyright (C) Ross Williams, 1
#ifndef CM_DONE
#define CM_DONE
+#include <stdbool.h>
+
/******************************************************************************/
/* The following definitions are extracted from my style header file which */
@@ -91,7 +93,6 @@ Status : Copyright (C) Ross Williams, 1
#ifndef DONE_STYLE
typedef unsigned long ulong;
-typedef unsigned bool;
typedef unsigned char * p_ubyte_;
#ifndef TRUE
Index: sleuthkit-4.14.0/tsk/img/aff.c
===================================================================
--- sleuthkit-4.14.0.orig/tsk/img/aff.c
+++ sleuthkit-4.14.0/tsk/img/aff.c
@@ -14,8 +14,6 @@
#if HAVE_LIBAFFLIB
-typedef int bool;
-
#include "aff.h"
/* Note: The routine -assumes- we are under a lock on &(img_info->cache_lock)) */