mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-19 18:20:07 +02:00
35 lines
892 B
Plaintext
35 lines
892 B
Plaintext
From ddbf30b1bb2e8c2ef09ca5b8e600cc64fb867cdf Mon Sep 17 00:00:00 2001
|
|
From: Gerasim Troeglazov <3dEyes@gmail.com>
|
|
Date: Sun, 31 Mar 2019 13:52:28 +1000
|
|
Subject: Fix build for Haiku
|
|
|
|
|
|
diff --git a/include/id3/id3lib_strings.h b/include/id3/id3lib_strings.h
|
|
index f326cdf..142e09a 100644
|
|
--- a/include/id3/id3lib_strings.h
|
|
+++ b/include/id3/id3lib_strings.h
|
|
@@ -30,6 +30,7 @@
|
|
#define _ID3LIB_STRINGS_H_
|
|
|
|
#include <string>
|
|
+#include <string.h>
|
|
|
|
#if (defined(__GNUC__) && (__GNUC__ >= 3) || (defined(_MSC_VER) && _MSC_VER > 1000))
|
|
namespace std
|
|
diff --git a/include/id3/writers.h b/include/id3/writers.h
|
|
index 1cbb0dc..4bc8f77 100644
|
|
--- a/include/id3/writers.h
|
|
+++ b/include/id3/writers.h
|
|
@@ -30,7 +30,7 @@
|
|
|
|
#include "id3/writer.h"
|
|
#include "id3/id3lib_streams.h"
|
|
-//#include <string.h>
|
|
+#include <string.h>
|
|
|
|
class ID3_CPP_EXPORT ID3_OStreamWriter : public ID3_Writer
|
|
{
|
|
--
|
|
2.19.1
|
|
|