diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-05-10 14:22:56 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-05-10 14:22:56 +0000 |
commit | 693f57b5c7b29e563e672be8288260472c544aa5 (patch) | |
tree | 8cbb1c49837cfba82b92f9fada6cc784af4c8324 /media-sound/orpheus/files | |
parent | stable on ppc, bug 218145 (diff) | |
download | gentoo-2-693f57b5c7b29e563e672be8288260472c544aa5.tar.gz gentoo-2-693f57b5c7b29e563e672be8288260472c544aa5.tar.bz2 gentoo-2-693f57b5c7b29e563e672be8288260472c544aa5.zip |
Remove deprecated libghttp support wrt #244128
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/orpheus/files')
-rw-r--r-- | media-sound/orpheus/files/1.5-gcc34.patch | 43 | ||||
-rw-r--r-- | media-sound/orpheus/files/orpheus-1.5-nolibghttp.patch | 11 |
2 files changed, 0 insertions, 54 deletions
diff --git a/media-sound/orpheus/files/1.5-gcc34.patch b/media-sound/orpheus/files/1.5-gcc34.patch deleted file mode 100644 index fbbe3d900664..000000000000 --- a/media-sound/orpheus/files/1.5-gcc34.patch +++ /dev/null @@ -1,43 +0,0 @@ -diff -Naur old/src/mixerctl.cc new/src/mixerctl.cc ---- old/src/mixerctl.cc 2004-09-04 02:44:12.797543753 +0200 -+++ new/src/mixerctl.cc 2004-09-04 02:44:47.889365170 +0200 -@@ -50,7 +50,7 @@ - - if((fd = ::open(devname.c_str(), O_RDWR)) != -1) { - if(ioctl(fd, SOUND_MIXER_READ_DEVMASK, &devmask) != -1) { -- for(ct = ctVolume; ct != channeltype_end; (int) ct += 1) { -+ for(ct = ctVolume; ct != channeltype_end; ct = (mixerctl::channeltype) (ct + 1)) { - if((1 << (int) ct) & devmask) { - channels.insert(ct); - } -diff -Naur old/src/uitext.cc new/src/uitext.cc ---- old/src/uitext.cc 2004-09-04 03:36:50.928930920 +0200 -+++ new/src/uitext.cc 2004-09-04 03:45:23.183056456 +0200 -@@ -577,14 +577,16 @@ - autosavepl = !autosavepl; - break; - case 41: -- if(++((int) playmode) == PlayMode_size) -+ playmode = (PlayMode) (playmode + 1); -+ if(playmode == PlayMode_size) - playmode = Normal; - break; - case 42: - autoplay = !autoplay; - break; - case 43: -- if(++((int) sortorder) == SortOrder_size) -+ sortorder = (SortOrder) (sortorder + 1); -+ if(sortorder == SortOrder_size) - sortorder = byFileName; - break; - case 44: -@@ -719,7 +721,7 @@ - while(!finished) { - m.clear(); - -- for(ct = mixerctl::ctVolume; ct != mixerctl::channeltype_end; (int) ct += 1) { -+ for(ct = mixerctl::ctVolume; ct != mixerctl::channeltype_end; ct = (mixerctl::channeltype) (ct + 1)) { - if(chavail.count(ct)) { - val = mix.readlevel(ct); - if(val >= 0) { diff --git a/media-sound/orpheus/files/orpheus-1.5-nolibghttp.patch b/media-sound/orpheus/files/orpheus-1.5-nolibghttp.patch deleted file mode 100644 index 076d17138f23..000000000000 --- a/media-sound/orpheus/files/orpheus-1.5-nolibghttp.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- orpheus-1.5/configure.old 2006-11-25 17:14:46.000000000 +0100 -+++ orpheus-1.5/configure 2006-11-25 17:15:25.000000000 +0100 -@@ -1479,7 +1479,7 @@ - LIBS="$ac_save_LIBS" - - fi --if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then -+if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = nolibghttp"; then - echo "$ac_t""yes" 1>&6 - ac_tr_lib=HAVE_LIB`echo ghttp | sed -e 's/[^a-zA-Z0-9_]/_/g' \ - -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'` |