<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">From f331ce72528a7cca35ede168d2fa26f9872a6e1e Mon Sep 17 00:00:00 2001
From: David Runge &lt;dave@sleepmap.de&gt;
Date: Tue, 20 Feb 2024 16:38:37 +0100
Subject: [PATCH 1/1] Add missing include for iostream, needed for taglib &gt;= 2

Signed-off-by: David Runge &lt;dave@sleepmap.de&gt;
---
 libs/ardour/audiofile_tagger.cc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/libs/ardour/audiofile_tagger.cc b/libs/ardour/audiofile_tagger.cc
index 4c132cbcc6..e744561346 100644
--- a/libs/ardour/audiofile_tagger.cc
+++ b/libs/ardour/audiofile_tagger.cc
@@ -34,6 +34,8 @@
 #include &lt;taglib/taglib.h&gt;
 #include &lt;taglib/xiphcomment.h&gt;
 
+#include &lt;iostream&gt;
+
 /* Convert string to TagLib::String */
 #define TL_STR(string) TagLib::String ((string).c_str(), TagLib::String::UTF8)
 
-- 
2.49.0

</pre></body></html>