Hello community, here is the log from the commit of package SDL_gfx checked in at Wed Dec 20 20:33:07 CET 2006. -------- --- SDL_gfx/SDL_gfx.changes 2006-09-14 16:14:05.000000000 +0200 +++ /mounts/work_src_done/STABLE/SDL_gfx/SDL_gfx.changes 2006-12-20 18:23:03.000000000 +0100 @@ -1,0 +2,23 @@ +Wed Dec 20 11:12:52 CET 2006 - sndirsch@suse.de + +- updated to release 2.0.14 + * added texturedPolygon routine to library (thanks Jees) + * changed iterator condition in aaellipse to add some overdraw + to smooth circle + * added ShrinkImage routine to rotozoom code + * added TestABGR Test program (bug in SDL_gfx or SDL??) + * improved TestImageFilter program (bug in Uint filters) + * changed .so versioning from .so.13.0.0 to .so.0.0.14 + (best is to remove all old libs before installing) + * added updated MacOSX ProjectBuilder file (thanks Brian) + * added info on MacOSX 10.3 build + * added mingw (on cygwin) makefile (thanks Brian) + * added Dev-Cpp makefile (thanks Sebastian) + * removed some unused variables from gfx and rotozoom code + (thanks Thi) + * fixed a non-critical typecast mistake (thanks Thi) + * converted all C++ comments to C comments in SDL_imageFilter +- random.diff: + * fixed fatal build warnings for returning random data in a function + +------------------------------------------------------------------- Old: ---- SDL_gfx-2.0.13.tar.gz New: ---- SDL_gfx-2.0.14.tar.gz random.diff ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ SDL_gfx.spec ++++++ --- /var/tmp/diff_new_pack.AcAClo/_old 2006-12-20 20:32:24.000000000 +0100 +++ /var/tmp/diff_new_pack.AcAClo/_new 2006-12-20 20:32:24.000000000 +0100 @@ -1,5 +1,5 @@ # -# spec file for package SDL_gfx (Version 2.0.13) +# spec file for package SDL_gfx (Version 2.0.14) # # Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -14,10 +14,11 @@ BuildRequires: SDL-devel libstdc++-devel URL: http://www.ferzkopp.net/mambo/index.php?option=com_content&task=view&id=14&Itemid=29 Summary: SDL Graphics Routines for Primitives and Other Support Functions -Version: 2.0.13 -Release: 19 +Version: 2.0.14 +Release: 1 Source0: %{name}-%{version}.tar.gz -License: LGPL +Patch: random.diff +License: GNU Library General Public License v. 2.0 and 2.1 (LGPL) Group: System/Libraries BuildRoot: %{_tmppath}/%{name}-%{version}-build Prefix: %{_prefix} @@ -75,6 +76,7 @@ %prep %setup +%patch %build %{?suse_update_config:%{suse_update_config -f }} @@ -115,6 +117,26 @@ %{prefix}/%_lib/lib*.so %changelog -n SDL_gfx +* Wed Dec 20 2006 - sndirsch@suse.de +- updated to release 2.0.14 + * added texturedPolygon routine to library (thanks Jees) + * changed iterator condition in aaellipse to add some overdraw + to smooth circle + * added ShrinkImage routine to rotozoom code + * added TestABGR Test program (bug in SDL_gfx or SDL??) + * improved TestImageFilter program (bug in Uint filters) + * changed .so versioning from .so.13.0.0 to .so.0.0.14 + (best is to remove all old libs before installing) + * added updated MacOSX ProjectBuilder file (thanks Brian) + * added info on MacOSX 10.3 build + * added mingw (on cygwin) makefile (thanks Brian) + * added Dev-Cpp makefile (thanks Sebastian) + * removed some unused variables from gfx and rotozoom code + (thanks Thi) + * fixed a non-critical typecast mistake (thanks Thi) + * converted all C++ comments to C comments in SDL_imageFilter +- random.diff: + * fixed fatal build warnings for returning random data in a function * Thu Sep 14 2006 - nadvornik@suse.cz - fixed Requires of devel subpackage [#192736] * Fri Mar 10 2006 - bk@suse.de ++++++ SDL_gfx-2.0.13.tar.gz -> SDL_gfx-2.0.14.tar.gz ++++++ ++++ 49106 lines of diff (skipped) ++++++ random.diff ++++++ --- SDL_gfxPrimitives.c.orig 2006-12-20 18:14:28.810409662 +0100 +++ SDL_gfxPrimitives.c 2006-12-20 18:19:52.144403556 +0100 @@ -3565,10 +3565,10 @@ } } if (maxx <0 || minx > dst->w){ - return; + return -1; } if (maxy <0 || miny > dst->h){ - return; + return -1; } /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org