You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-misc/gerbera/files/gerbera-1.5.0-incomplete-ty...

26 lines
801 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

From 5ebc80d64bc651a3cd5de0e92f1e607b8f8ea407 Mon Sep 17 00:00:00 2001
From: Ian Whyman <ian@gerbera.io>
Date: Sat, 9 May 2020 11:22:47 +0100
Subject: [PATCH] Fix incomplete type iohandler with Ninja generator
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
error: invalid application of sizeof to incomplete type IOHandler
---
src/metadata/ffmpeg_handler.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/metadata/ffmpeg_handler.h b/src/metadata/ffmpeg_handler.h
index 7c134430..565ff773 100644
--- a/src/metadata/ffmpeg_handler.h
+++ b/src/metadata/ffmpeg_handler.h
@@ -42,6 +42,7 @@
namespace fs = std::filesystem;
#include "metadata_handler.h"
+#include "iohandler/io_handler.h"
// forward declaration
class AVFormatContext;