diff options
author | Matthias Schwarzott <zzam@gentoo.org> | 2009-08-20 19:22:12 +0000 |
---|---|---|
committer | Matthias Schwarzott <zzam@gentoo.org> | 2009-08-20 19:22:12 +0000 |
commit | 73e17862653e2dc6a56dab440ec3276a65f1a064 (patch) | |
tree | 6b244557ee74768403ed92732ae69046bdd7b76c /media-plugins/vdr-radio/files | |
parent | Automated update of use.local.desc (diff) | |
download | gentoo-2-73e17862653e2dc6a56dab440ec3276a65f1a064.tar.gz gentoo-2-73e17862653e2dc6a56dab440ec3276a65f1a064.tar.bz2 gentoo-2-73e17862653e2dc6a56dab440ec3276a65f1a064.zip |
Version bumped.
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'media-plugins/vdr-radio/files')
-rw-r--r-- | media-plugins/vdr-radio/files/vdr-radio-0.2.5-glibc-2.10.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/media-plugins/vdr-radio/files/vdr-radio-0.2.5-glibc-2.10.patch b/media-plugins/vdr-radio/files/vdr-radio-0.2.5-glibc-2.10.patch new file mode 100644 index 000000000000..7e80da9612da --- /dev/null +++ b/media-plugins/vdr-radio/files/vdr-radio-0.2.5-glibc-2.10.patch @@ -0,0 +1,30 @@ +diff -ur radio-0.2.4.orig/radioepg.c radio-0.2.4/radioepg.c +--- radio-0.2.4.orig/radioepg.c 2007-10-09 18:45:26.000000000 +0300 ++++ radio-0.2.4/radioepg.c 2009-08-08 22:50:46.000000000 +0300 +@@ -12,7 +12,7 @@ + int epg_premiere(const char *epgtitle, const char *epgdescr, time_t epgstart, time_t epgend) + { + int i; +- char *p; ++ const char *p; + char artist[RT_MEL], titel[RT_MEL], album[RT_MEL], jahr[RT_MEL]; + struct tm tm_store; + +@@ -143,7 +143,7 @@ + int epg_kdg(const char *epgdescr, time_t epgstart, time_t epgend) + { + int i; +- char *p; ++ const char *p; + char artist[RT_MEL], titel[RT_MEL], album[RT_MEL], komp[RT_MEL]; + struct tm tm_store; + +@@ -240,7 +240,7 @@ + int epg_unitymedia(const char *epgtitle, const char *epgdescr, time_t epgstart, time_t epgend) + { + int i; +- char *p1, *p2; ++ const char *p1, *p2; + char titel[2*RT_MEL], artist[2*RT_MEL]; + struct tm tm_store; + |