-
Notifications
You must be signed in to change notification settings - Fork 415
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rpidistro-vlc: fix error uint64_t does not name
Build failure occurring with gcc version 13.1.1. Add patch to fix builds with latest gcc in OE-core. Signed-off-by: Vincent Davis Jr <[email protected]>
- Loading branch information
1 parent
f78b4f1
commit be4867e
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
30 changes: 30 additions & 0 deletions
30
...-multimedia/rpidistro-vlc/files/0009-demux-dash-include-cstdint-needed-for-uint64_t.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
From 6fca76ebd76bf8fce9b111e31bda64015cdc770f Mon Sep 17 00:00:00 2001 | ||
From: Johannes Kauffmann <[email protected]> | ||
Date: Mon, 11 Jul 2022 19:35:57 +0000 | ||
Subject: [PATCH] demux: dash: include cstdint, needed for uint64_t | ||
|
||
Fixes #27077. | ||
|
||
Upstream-Status: Backport | ||
|
||
https://github.com/videolan/vlc/commit/6fca76ebd76bf8fce9b111e31bda64015cdc770f | ||
|
||
--- | ||
modules/demux/dash/mpd/TemplatedUri.hpp | 1 + | ||
1 file changed, 1 insertion(+) | ||
|
||
diff --git a/modules/demux/dash/mpd/TemplatedUri.hpp b/modules/demux/dash/mpd/TemplatedUri.hpp | ||
index 1eeb70cbb6..7f7264a9c8 100644 | ||
--- a/modules/demux/dash/mpd/TemplatedUri.hpp | ||
+++ b/modules/demux/dash/mpd/TemplatedUri.hpp | ||
@@ -21,6 +21,7 @@ | ||
#ifndef TEMPLATEDURI_HPP | ||
#define TEMPLATEDURI_HPP | ||
|
||
+#include <cstdint> | ||
#include <string> | ||
|
||
namespace dash | ||
-- | ||
2.34.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters