summaryrefslogtreecommitdiffstats
path: root/libraries/id3lib/patches/id3lib.cppheaders.patch
diff options
context:
space:
mode:
author Matteo Bernardini2020-05-23 08:12:52 +0200
committer Matteo Bernardini2020-05-23 08:12:52 +0200
commit9b91bf41a9b6c2933b7757536fc9944e643602bf (patch)
treefb675a32bf315d68d76a87ac30b339d2f95fb5bd /libraries/id3lib/patches/id3lib.cppheaders.patch
parented0074d03fdb30fde2ae0f56100c935d31cefbb8 (diff)
downloadslackbuilds-current-20200523.1.tar.gz
20200523.1 global branch merge.current-20200523.1
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'libraries/id3lib/patches/id3lib.cppheaders.patch')
-rw-r--r--libraries/id3lib/patches/id3lib.cppheaders.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/libraries/id3lib/patches/id3lib.cppheaders.patch b/libraries/id3lib/patches/id3lib.cppheaders.patch
deleted file mode 100644
index a9b45ab02c..0000000000
--- a/libraries/id3lib/patches/id3lib.cppheaders.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-This patch imports the proper C++ headers
---- a/include/id3/id3lib_strings.h
-+++ b/include/id3/id3lib_strings.h
-@@ -30,6 +30,7 @@
- #define _ID3LIB_STRINGS_H_
-
- #include <string>
-+#include <cstring>
-
- #if (defined(__GNUC__) && (__GNUC__ >= 3) || (defined(_MSC_VER) && _MSC_VER > 1000))
- namespace std
---- 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 <cstring>
-
- class ID3_CPP_EXPORT ID3_OStreamWriter : public ID3_Writer
- {