[PATCH] mpg123: Don't try to include strings.h

Martin Storsjö martin at martin.st
Sat Oct 23 01:42:36 CDT 2021


Wine doesn't provide this header. When building with mingw tools, it
ends up including the header from the mingw toolchain's headers. When
building with Clang in MSVC mode, it fails to include the header
altogether.

Signed-off-by: Martin Storsjö <martin at martin.st>
---
 libs/mpg123/config.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libs/mpg123/config.h b/libs/mpg123/config.h
index 77986b2a513..ba3e217ee0d 100644
--- a/libs/mpg123/config.h
+++ b/libs/mpg123/config.h
@@ -219,7 +219,7 @@
 #define HAVE_STRERROR 1
 
 /* Define to 1 if you have the <strings.h> header file. */
-#define HAVE_STRINGS_H 1
+/* #undef HAVE_STRINGS_H */
 
 /* Define to 1 if you have the <string.h> header file. */
 #define HAVE_STRING_H 1
-- 
2.25.1




More information about the wine-devel mailing list