blob: 7152c47ce0b032a355cf7f133d7c5975a27ad408 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
From https://patch-diff.githubusercontent.com/raw/intel/media-driver/pull/1849.patch
From: Blackteahamburger <blackteahamburger@outlook.com>
Date: Thu, 29 Aug 2024 17:04:55 +0800
Subject: [PATCH] Fix missing cstdint for GCC 15
--- a/media_common/linux/common/os/mos_defs_specific.h
+++ b/media_common/linux/common/os/mos_defs_specific.h
@@ -29,6 +29,7 @@
#include <pthread.h>
#include <semaphore.h>
+#include <cstdint>
#include <string>
typedef pthread_mutex_t MOS_MUTEX, *PMOS_MUTEX; //!< mutex pointer
|