From 9a678b71d68512dbff66d3c858ff04cac82fdc83 Mon Sep 17 00:00:00 2001 From: John Emmas Date: Sat, 5 Nov 2022 13:30:56 +0000 Subject: [PATCH] 'strings.h' isn't available in MSVC --- libs/ardour/sndfile_helpers.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/ardour/sndfile_helpers.cc b/libs/ardour/sndfile_helpers.cc index 372036fdc6..aa6522ebeb 100644 --- a/libs/ardour/sndfile_helpers.cc +++ b/libs/ardour/sndfile_helpers.cc @@ -18,7 +18,9 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ +#ifndef COMPILER_MSVC #include +#endif #include #include "ardour/sndfile_helpers.h" #include "ardour/export_format_base.h"