summaryrefslogtreecommitdiff
path: root/audio/id3lib/patches
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2002-08-31 01:56:56 +0000
committerwiz <wiz@pkgsrc.org>2002-08-31 01:56:56 +0000
commit6b856c6ffeb7d900a80d2863ce04eb61bc637347 (patch)
tree2b868ea12eb8e1f8270f64c9a1a1e05b22c9ea6e /audio/id3lib/patches
parent4132e2f00b85ce9034c786c5ac0c2eb32e137670 (diff)
downloadpkgsrc-6b856c6ffeb7d900a80d2863ce04eb61bc637347.tar.gz
Update to 3.8.0.
Lots of build fixes and other bug fixes.
Diffstat (limited to 'audio/id3lib/patches')
-rw-r--r--audio/id3lib/patches/patch-ab28
-rw-r--r--audio/id3lib/patches/patch-ac58
-rw-r--r--audio/id3lib/patches/patch-ae13
-rw-r--r--audio/id3lib/patches/patch-ah13
-rw-r--r--audio/id3lib/patches/patch-ai13
-rw-r--r--audio/id3lib/patches/patch-aj13
-rw-r--r--audio/id3lib/patches/patch-ak13
-rw-r--r--audio/id3lib/patches/patch-al13
-rw-r--r--audio/id3lib/patches/patch-am13
-rw-r--r--audio/id3lib/patches/patch-an13
-rw-r--r--audio/id3lib/patches/patch-ao13
-rw-r--r--audio/id3lib/patches/patch-ap13
12 files changed, 0 insertions, 216 deletions
diff --git a/audio/id3lib/patches/patch-ab b/audio/id3lib/patches/patch-ab
deleted file mode 100644
index 1a97738bcd2..00000000000
--- a/audio/id3lib/patches/patch-ab
+++ /dev/null
@@ -1,28 +0,0 @@
-$NetBSD: patch-ab,v 1.1.1.1 2001/07/31 14:28:00 drochner Exp $
-
---- src/frame_impl.h.orig Mon Jul 30 16:21:20 2001
-+++ src/frame_impl.h Mon Jul 30 16:30:26 2001
-@@ -29,13 +29,12 @@
- #define _ID3LIB_FRAME_IMPL_H_
-
- #include <vector>
--#include <bitset>
- #include "frame.h"
- #include "header_frame.h"
-
- class ID3_FrameImpl
- {
-- typedef std::bitset<ID3FN_LASTFIELDID> Bitset;
-+ typedef std::bit_vector Bitset;
- typedef std::vector<ID3_Field *> Fields;
- public:
- typedef Fields::iterator iterator;
-@@ -68,7 +67,7 @@
- void Render(ID3_Writer&) const;
- size_t Size();
- bool Contains(ID3_FieldID fld) const
-- { return _bitset.test(fld); }
-+ { return _bitset[fld]; }
- bool SetSpec(ID3_V2Spec);
- ID3_V2Spec GetSpec() const;
-
diff --git a/audio/id3lib/patches/patch-ac b/audio/id3lib/patches/patch-ac
deleted file mode 100644
index a60698adcc8..00000000000
--- a/audio/id3lib/patches/patch-ac
+++ /dev/null
@@ -1,58 +0,0 @@
-$NetBSD: patch-ac,v 1.1.1.1 2001/07/31 14:28:00 drochner Exp $
-
---- src/frame_impl.cpp.orig Mon Jul 30 16:21:31 2001
-+++ src/frame_impl.cpp Mon Jul 30 16:31:41 2001
-@@ -37,7 +37,7 @@
-
- ID3_FrameImpl::ID3_FrameImpl(ID3_FrameID id)
- : _changed(false),
-- _bitset(),
-+ _bitset(ID3FN_LASTFIELDID, false),
- _fields(),
- _encryption_id('\0'),
- _grouping_id('\0')
-@@ -48,7 +48,7 @@
-
- ID3_FrameImpl::ID3_FrameImpl(const ID3_FrameHeader &hdr)
- : _changed(false),
-- _bitset(),
-+ _bitset(ID3FN_LASTFIELDID, false),
- _fields(),
- _hdr(hdr),
- _encryption_id('\0'),
-@@ -59,7 +59,7 @@
-
- ID3_FrameImpl::ID3_FrameImpl(const ID3_Frame& frame)
- : _changed(false),
-- _bitset(),
-+ _bitset(ID3FN_LASTFIELDID, false),
- _fields(),
- _encryption_id('\0'),
- _grouping_id('\0')
-@@ -80,7 +80,7 @@
- }
-
- _fields.clear();
-- _bitset.reset();
-+ _bitset.clear();
-
- _changed = true;
- return true;
-@@ -102,7 +102,7 @@
- // log this
- ID3_Field* fld = new ID3_FieldImpl(ID3_FieldDef::DEFAULT[0]);
- _fields.push_back(fld);
-- _bitset.set(fld->GetID());
-+ _bitset[fld->GetID()] = true;
- }
- else
- {
-@@ -111,7 +111,7 @@
- {
- ID3_Field* fld = new ID3_FieldImpl(info->aeFieldDefs[i]);
- _fields.push_back(fld);
-- _bitset.set(fld->GetID());
-+ _bitset[fld->GetID()] = true;
- }
-
- _changed = true;
diff --git a/audio/id3lib/patches/patch-ae b/audio/id3lib/patches/patch-ae
deleted file mode 100644
index d5fc59bb3a1..00000000000
--- a/audio/id3lib/patches/patch-ae
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ae,v 1.2 2002/01/08 17:49:12 drochner Exp $
-
---- include/id3/id3strings.h.orig Mon Oct 23 06:32:33 2000
-+++ include/id3/id3strings.h Tue Jan 8 16:27:07 2002
-@@ -34,7 +34,7 @@
- {
- typedef std::basic_string<char> String;
- typedef std::basic_string<unsigned char> BString;
-- typedef std::basic_string<wchar_t> WString;
-+ typedef std::basic_string<unsigned char> WString;
- };
-
- #endif /* _ID3LIB_STRINGS_H_ */
diff --git a/audio/id3lib/patches/patch-ah b/audio/id3lib/patches/patch-ah
deleted file mode 100644
index f406ad52beb..00000000000
--- a/audio/id3lib/patches/patch-ah
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ah,v 1.1 2002/01/08 17:49:13 drochner Exp $
-
---- include/id3/utils.h.orig Tue Jan 8 16:43:45 2002
-+++ include/id3/utils.h Tue Jan 8 16:44:06 2002
-@@ -34,7 +34,7 @@
-
- #include <fstream.h>
- #include "globals.h"
--#include "strings.h"
-+#include "id3strings.h"
-
- namespace dami
- {
diff --git a/audio/id3lib/patches/patch-ai b/audio/id3lib/patches/patch-ai
deleted file mode 100644
index 13545b51456..00000000000
--- a/audio/id3lib/patches/patch-ai
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ai,v 1.1 2002/01/08 17:49:13 drochner Exp $
-
---- include/id3/helpers.h.orig Tue Jan 8 16:46:04 2002
-+++ include/id3/helpers.h Tue Jan 8 16:46:16 2002
-@@ -28,7 +28,7 @@
- #ifndef _ID3LIB_HELPERS_H_
- #define _ID3LIB_HELPERS_H_
-
--#include "strings.h"
-+#include "id3strings.h"
- #include "globals.h"
-
- class ID3_TagImpl;
diff --git a/audio/id3lib/patches/patch-aj b/audio/id3lib/patches/patch-aj
deleted file mode 100644
index 8db9737736b..00000000000
--- a/audio/id3lib/patches/patch-aj
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-aj,v 1.1 2002/01/08 17:49:13 drochner Exp $
-
---- include/id3/io_helpers.h.orig Tue Jan 8 16:47:21 2002
-+++ include/id3/io_helpers.h Tue Jan 8 16:47:33 2002
-@@ -28,7 +28,7 @@
- #ifndef _ID3LIB_IO_HELPERS_H_
- #define _ID3LIB_IO_HELPERS_H_
-
--#include "strings.h"
-+#include "id3strings.h"
- #include "reader.h"
- #include "writer.h"
-
diff --git a/audio/id3lib/patches/patch-ak b/audio/id3lib/patches/patch-ak
deleted file mode 100644
index 3892b3619d0..00000000000
--- a/audio/id3lib/patches/patch-ak
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ak,v 1.1 2002/01/08 17:49:13 drochner Exp $
-
---- src/tag.cpp.orig Tue Jan 8 16:51:19 2002
-+++ src/tag.cpp Tue Jan 8 16:51:33 2002
-@@ -32,7 +32,7 @@
- #include "readers.h"
- #include "writers.h"
- #include "tag_impl.h"
--#include "strings.h"
-+#include "id3strings.h"
- #include "utils.h"
-
- using namespace dami;
diff --git a/audio/id3lib/patches/patch-al b/audio/id3lib/patches/patch-al
deleted file mode 100644
index 181c2b469a8..00000000000
--- a/audio/id3lib/patches/patch-al
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-al,v 1.1 2002/01/08 17:49:13 drochner Exp $
-
---- src/tag_impl.h.orig Tue Jan 8 16:52:15 2002
-+++ src/tag_impl.h Tue Jan 8 16:52:28 2002
-@@ -35,7 +35,7 @@
- #include "frame.h"
- #include "field.h"
- #include "spec.h"
--#include "strings.h"
-+#include "id3strings.h"
-
- class ID3_Reader;
- class ID3_Writer;
diff --git a/audio/id3lib/patches/patch-am b/audio/id3lib/patches/patch-am
deleted file mode 100644
index 2246dc990de..00000000000
--- a/audio/id3lib/patches/patch-am
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-am,v 1.1 2002/01/08 17:49:13 drochner Exp $
-
---- include/id3/io_decorators.h.orig Tue Jan 8 17:01:03 2002
-+++ include/id3/io_decorators.h Tue Jan 8 17:01:14 2002
-@@ -28,7 +28,7 @@
- #ifndef _ID3LIB_READER_DECORATORS_H_
- #define _ID3LIB_READER_DECORATORS_H_
-
--#include "strings.h"
-+#include "id3strings.h"
- #include "readers.h"
- #include "io_helpers.h"
- #include "utils.h"
diff --git a/audio/id3lib/patches/patch-an b/audio/id3lib/patches/patch-an
deleted file mode 100644
index c82e5244a9e..00000000000
--- a/audio/id3lib/patches/patch-an
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-an,v 1.1 2002/01/08 17:49:13 drochner Exp $
-
---- include/id3/io_strings.h.orig Tue Jan 8 17:12:24 2002
-+++ include/id3/io_strings.h Tue Jan 8 17:12:38 2002
-@@ -28,7 +28,7 @@
- #ifndef _ID3LIB_IO_STRINGS_H_
- #define _ID3LIB_IO_STRINGS_H_
-
--#include "strings.h"
-+#include "id3strings.h"
- #include "reader.h"
- #include "writer.h"
-
diff --git a/audio/id3lib/patches/patch-ao b/audio/id3lib/patches/patch-ao
deleted file mode 100644
index c4e38e15404..00000000000
--- a/audio/id3lib/patches/patch-ao
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ao,v 1.1 2002/01/08 17:49:13 drochner Exp $
-
---- include/id3/Makefile.in.orig Tue Jan 8 16:37:19 2002
-+++ include/id3/Makefile.in Tue Jan 8 16:37:34 2002
-@@ -108,7 +108,7 @@
- id3includedir = $(includedir)/id3
- id3include_HEADERS = $(the_headers)
-
--noinst_HEADERS = helpers.h io_decorators.h io_helpers.h io_strings.h strings.h
-+noinst_HEADERS = helpers.h io_decorators.h io_helpers.h io_strings.h id3strings.h
-
- mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
- CONFIG_HEADER = ../../config.h
diff --git a/audio/id3lib/patches/patch-ap b/audio/id3lib/patches/patch-ap
deleted file mode 100644
index 9ac6b9de3ea..00000000000
--- a/audio/id3lib/patches/patch-ap
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ap,v 1.1 2002/01/08 17:49:13 drochner Exp $
-
---- src/field_impl.h.orig Tue Jan 8 16:40:06 2002
-+++ src/field_impl.h Tue Jan 8 16:40:21 2002
-@@ -30,7 +30,7 @@
-
- #include <stdlib.h>
- #include "field.h"
--#include "strings.h"
-+#include "id3strings.h"
-
- struct ID3_FieldDef;
- struct ID3_FrameDef;