commit yast2-sound for openSUSE:Factory
Hello community, here is the log from the commit of package yast2-sound for openSUSE:Factory checked in at Fri Dec 19 15:21:34 CET 2008. -------- --- yast2-sound/yast2-sound.changes 2008-12-02 13:06:33.000000000 +0100 +++ /mounts/work_src_done/STABLE/yast2-sound/yast2-sound.changes 2008-12-18 11:10:32.348035000 +0100 @@ -1,0 +2,5 @@ +Thu Dec 18 11:10:21 CET 2008 - ro@suse.de + +- fix build for non-alsa case (s390) + +------------------------------------------------------------------- calling whatdependson for head-i586 New: ---- yast2-sound-non_alsa.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-sound.spec ++++++ --- /var/tmp/diff_new_pack.U20465/_old 2008-12-19 15:21:10.000000000 +0100 +++ /var/tmp/diff_new_pack.U20465/_new 2008-12-19 15:21:10.000000000 +0100 @@ -20,11 +20,12 @@ Name: yast2-sound Version: 2.17.13 -Release: 1 +Release: 2 License: GPL v2 or later Group: System/YaST BuildRoot: %{_tmppath}/%{name}-%{version}-build Source0: yast2-sound-2.17.13.tar.bz2 +Patch0: yast2-sound-non_alsa.patch Prefix: /usr BuildRequires: alsa-devel doxygen gcc-c++ perl-XML-Writer update-desktop-files yast2 yast2-core-devel yast2-devtools yast2-testsuite # GetInstArgs::automatic_configuration @@ -49,6 +50,7 @@ %prep %setup -n yast2-sound-2.17.13 +%patch0 %build %{prefix}/bin/y2tool y2autoconf @@ -93,7 +95,10 @@ %{_libdir}/YaST2/plugin/libpy2ag_audio.so* /usr/share/YaST2/scrconf/*.scr %doc %{prefix}/share/doc/packages/yast2-sound + %changelog +* Thu Dec 18 2008 ro@suse.de +- fix build for non-alsa case (s390) * Tue Dec 02 2008 lslezak@suse.cz - fixed package installation in autoyast installation mode (bnc#450416) ++++++ yast2-sound-non_alsa.patch ++++++ --- agent-audio/src/AlsaAudio.cc +++ agent-audio/src/AlsaAudio.cc @@ -287,9 +287,9 @@ #else // __HAVE_ALSA -YCPValue alsaSetVolume(int card, const string& channel, int value) +YCPBoolean alsaSetVolume(int card, const string& channel, int value) { - return YCPVoid(); + return YCPBoolean(false); } YCPValue alsaGetVolume(int card, const string& channel) @@ -297,9 +297,9 @@ return YCPVoid(); } -YCPValue alsaSetMute(int card, const string& channel, bool value) +YCPBoolean alsaSetMute(int card, const string& channel, bool value) { - return YCPVoid(); + return YCPBoolean(false); } YCPValue alsaGetMute(int card, const string& channel) @@ -307,14 +307,16 @@ return YCPVoid(); } -YCPValue alsaGetChannels(int card) +YCPList alsaGetChannels(int card) { - return YCPVoid(); + YCPList outlist; + return outlist; } -YCPValue alsaGetCards() +YCPList alsaGetCards() { - return YCPVoid(); + YCPList list; + return list; } YCPValue alsaGetCardName(int card_id) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@Hilbert.suse.de