diff options
author | Michael 'Mickey' Lauer <mickey@vanille-media.de> | 2010-01-17 16:06:29 +0100 |
---|---|---|
committer | Michael 'Mickey' Lauer <mickey@vanille-media.de> | 2010-01-17 16:06:29 +0100 |
commit | 8cb3620fee3c4011367f53d7c69d014e21d45461 (patch) | |
tree | 01fae8214f4c9e625e74ae3fec6b9aeff523af52 /recipes/python/python-pyid3lib | |
parent | 3429df86535d1ae420ed2497ef564c2e89143313 (diff) |
python-pyid3lib: fix compiling for gcc4.x
Diffstat (limited to 'recipes/python/python-pyid3lib')
-rw-r--r-- | recipes/python/python-pyid3lib/gcc4-fix.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/recipes/python/python-pyid3lib/gcc4-fix.patch b/recipes/python/python-pyid3lib/gcc4-fix.patch new file mode 100644 index 0000000000..cfd972771f --- /dev/null +++ b/recipes/python/python-pyid3lib/gcc4-fix.patch @@ -0,0 +1,13 @@ +Index: pyid3lib-0.5.1/pyid3lib.cc +=================================================================== +--- pyid3lib-0.5.1.orig/pyid3lib.cc ++++ pyid3lib-0.5.1/pyid3lib.cc +@@ -1013,7 +1013,7 @@ + { + ID3_Frame* frame; + const char* str; +- char* slash; ++ const char* slash; + ID3_Field* fld; + int i; + |