You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
3.6 KiB
99 lines
3.6 KiB
# --- SDE-COPYRIGHT-NOTE-BEGIN --- |
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|
# |
|
# Filename: package/.../id3lib/id3lib-3.8.3-gcc43.patch |
|
# Copyright (C) 2010 The OpenSDE Project |
|
# |
|
# More information can be found in the files COPYING and README. |
|
# |
|
# This patch file is dual-licensed. It is available under the license the |
|
# patched project is licensed under, as long as it is an OpenSource license |
|
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms |
|
# of the GNU General Public License as published by the Free Software |
|
# Foundation; either version 2 of the License, or (at your option) any later |
|
# version. |
|
# --- SDE-COPYRIGHT-NOTE-END --- |
|
|
|
diff -ruN id3lib-3.8.3-orig/configure id3lib-3.8.3/configure |
|
--- id3lib-3.8.3-orig/configure 2003-03-02 01:23:00.000000000 +0100 |
|
+++ id3lib-3.8.3/configure 2010-07-23 13:59:11.716756262 +0200 |
|
@@ -10296,7 +10296,7 @@ |
|
|
|
for ac_header in \ |
|
string \ |
|
- iomanip.h \ |
|
+ iomanip \ |
|
|
|
do |
|
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` |
|
diff -ruN id3lib-3.8.3-orig/examples/demo_convert.cpp id3lib-3.8.3/examples/demo_convert.cpp |
|
--- id3lib-3.8.3-orig/examples/demo_convert.cpp 2003-03-02 01:23:00.000000000 +0100 |
|
+++ id3lib-3.8.3/examples/demo_convert.cpp 2010-07-23 13:59:11.716756262 +0200 |
|
@@ -84,7 +84,7 @@ |
|
} |
|
} |
|
|
|
-int main( unsigned int argc, char * const argv[]) |
|
+int main( int argc, char * const argv[]) |
|
{ |
|
flags_t ulFlag = ID3TT_ALL; |
|
gengetopt_args_info args; |
|
diff -ruN id3lib-3.8.3-orig/examples/demo_copy.cpp id3lib-3.8.3/examples/demo_copy.cpp |
|
--- id3lib-3.8.3-orig/examples/demo_copy.cpp 2003-03-02 01:23:00.000000000 +0100 |
|
+++ id3lib-3.8.3/examples/demo_copy.cpp 2010-07-23 13:59:11.716756262 +0200 |
|
@@ -81,7 +81,7 @@ |
|
} |
|
} |
|
|
|
-int main( unsigned int argc, char * const argv[]) |
|
+int main( int argc, char * const argv[]) |
|
{ |
|
int ulFlag = ID3TT_ID3; |
|
ID3D_INIT_DOUT(); |
|
diff -ruN id3lib-3.8.3-orig/examples/demo_info.cpp id3lib-3.8.3/examples/demo_info.cpp |
|
--- id3lib-3.8.3-orig/examples/demo_info.cpp 2003-03-02 01:23:00.000000000 +0100 |
|
+++ id3lib-3.8.3/examples/demo_info.cpp 2010-07-23 13:59:11.716756262 +0200 |
|
@@ -309,7 +309,7 @@ |
|
|
|
#define DEBUG |
|
|
|
-int main( unsigned int argc, char * const argv[]) |
|
+int main( int argc, char * const argv[]) |
|
{ |
|
ID3D_INIT_DOUT(); |
|
|
|
diff -ruN id3lib-3.8.3-orig/examples/demo_tag.cpp id3lib-3.8.3/examples/demo_tag.cpp |
|
--- id3lib-3.8.3-orig/examples/demo_tag.cpp 2003-03-02 01:23:00.000000000 +0100 |
|
+++ id3lib-3.8.3/examples/demo_tag.cpp 2010-07-23 13:59:11.716756262 +0200 |
|
@@ -46,7 +46,7 @@ |
|
os << "v2"; |
|
} |
|
|
|
-int main( unsigned int argc, char * const argv[]) |
|
+int main( int argc, char * const argv[]) |
|
{ |
|
int ulFlag = ID3TT_ID3; |
|
ID3D_INIT_DOUT(); |
|
diff -ruN id3lib-3.8.3-orig/include/id3/id3lib_strings.h id3lib-3.8.3/include/id3/id3lib_strings.h |
|
--- id3lib-3.8.3-orig/include/id3/id3lib_strings.h 2003-03-02 01:23:00.000000000 +0100 |
|
+++ id3lib-3.8.3/include/id3/id3lib_strings.h 2010-07-23 13:59:11.716756262 +0200 |
|
@@ -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 |
|
diff -ruN id3lib-3.8.3-orig/include/id3/writers.h id3lib-3.8.3/include/id3/writers.h |
|
--- id3lib-3.8.3-orig/include/id3/writers.h 2003-03-02 01:23:00.000000000 +0100 |
|
+++ id3lib-3.8.3/include/id3/writers.h 2010-07-23 13:59:11.716756262 +0200 |
|
@@ -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 |
|
{
|
|
|