Hello community, here is the log from the commit of package unrar checked in at Thu Dec 14 02:06:41 CET 2006. -------- --- unrar/unrar.changes 2006-08-29 13:37:39.000000000 +0200 +++ /mounts/work_src_done/STABLE/unrar/unrar.changes 2006-12-13 19:12:47.000000000 +0100 @@ -1,0 +2,5 @@ +Wed Dec 13 19:12:05 CET 2006 - lmichnovic@suse.cz + +- fixed string comparing (*strcmp.patch) + +------------------------------------------------------------------- New: ---- unrarsrc-3.6.8-strcmp.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ unrar.spec ++++++ --- /var/tmp/diff_new_pack.b52c2x/_old 2006-12-14 02:06:02.000000000 +0100 +++ /var/tmp/diff_new_pack.b52c2x/_new 2006-12-14 02:06:02.000000000 +0100 @@ -13,15 +13,16 @@ Name: unrar BuildRequires: gcc-c++ Version: 3.60.8 -Release: 1 +Release: 20 Autoreqprov: on Group: Productivity/Archiving/Compression -License: FSR, Other License(s), see package +License: Freely Redistributable Software (FSR), Other License(s), see package URL: http://www.rarlab.com Summary: A program to extract, test, and view RAR archives Source: %{name}src-3.6.8.tar.bz2 Patch: %{name}src-3.6.8-types.patch Patch1: %{name}src-3.6.8-gcc.patch +Patch2: %{name}src-3.6.8-strcmp.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -39,6 +40,7 @@ %setup -q -n %{name} %patch0 %patch1 +%patch2 %build make -f makefile.unix CXXFLAGS="$RPM_OPT_FLAGS -Wall -fmessage-length=0 -fno-strict-aliasing -fstack-protector" STRIP=true @@ -56,20 +58,22 @@ %{_bindir}/* %changelog -n unrar +* Wed Dec 13 2006 - lmichnovic@suse.cz +- fixed string comparing (*strcmp.patch) * Fri Jul 14 2006 - lmichnovic@suse.cz - update to version 3.60 -- non beta version + - non beta version - update to version 3.60 beta 7 -- in unrar changed only version, version changed due to fix in rar + - in unrar changed only version, version changed due to fix in rar * Mon Jul 10 2006 - lmichnovic@suse.cz - upgrade to version 3.60 beta 6 -- no changelog available + - no changelog available * Wed Jun 21 2006 - lmichnovic@suse.cz - upgrade to version 3.60 beta 5 -- no changelog available + - no changelog available * Tue Jun 13 2006 - lmichnovic@suse.cz - upgrade to version 3.6.4 -- no changelog available + - no changelog available - change the numbering to 3.6.0.4 because it is 3.60 beta 4 * Wed Jan 25 2006 - mls@suse.de - converted neededforbuild to BuildRequires ++++++ unrarsrc-3.6.8-strcmp.patch ++++++ --- cmddata.cpp +++ cmddata.cpp @@ -1,3 +1,4 @@ +#include <string.h> #include "rar.hpp" CommandData::CommandData() @@ -911,15 +912,15 @@ continue; #endif #ifndef _WIN_32 - if (Help[I]==MCHelpSwRI) + if (strncmp(Help[I],"MCHelpSwRI", 10)) continue; #endif #ifndef PACK_SMP - if (Help[I]==MCHelpSwMT) + if (strncmp(Help[I],"MCHelpSwMT", 10)) continue; #endif #ifndef _BEOS - if (Help[I]==MCHelpSwEE) + if (strncmp(Help[I],"MCHelpSwEE", 10)) { #if defined(_EMX) && !defined(_DJGPP) if (_osmode != OS2_MODE) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 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@suse.de