Hello community, here is the log from the commit of package gnash checked in at Wed Dec 20 18:11:39 CET 2006. -------- --- gnash/gnash.changes 2006-10-19 15:40:52.000000000 +0200 +++ /mounts/work_src_done/STABLE/gnash/gnash.changes 2006-12-20 14:12:43.000000000 +0100 @@ -1,0 +2,7 @@ +Wed Dec 20 14:12:22 CET 2006 - tiwai@suse.de + +- updated to CVS 2006.12.20 snapshot + * version bump to 0.7.2 + * lots of code fixes and optimizations + +------------------------------------------------------------------- Old: ---- gnash-0.7.1.cvs20061019.tar.bz2 gnash-pango-check-fix.diff New: ---- gnash-0.7.2.cvs20061220.tar.bz2 gnash-gcc-warning-fixes.diff gnash-no-movies.diff ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnash.spec ++++++ --- /var/tmp/diff_new_pack.PzJ92B/_old 2006-12-20 18:06:07.000000000 +0100 +++ /var/tmp/diff_new_pack.PzJ92B/_new 2006-12-20 18:06:07.000000000 +0100 @@ -1,5 +1,5 @@ # -# spec file for package gnash (Version 0.7.1.cvs20061019) +# spec file for package gnash (Version 0.7.2.cvs20061220) # # Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -11,15 +11,20 @@ # norootforbuild Name: gnash -BuildRequires: SDL_mixer-devel boost-devel curl-devel ffmpeg-devel gcc-c++ gstreamer010-devel gtk2-devel gtkglext-devel libjpeg-devel libogg-devel libstdc++-devel %define DISTRIBUTABLE 1 +BuildRequires: SDL_mixer-devel boost-devel curl-devel gcc-c++ gstreamer010-devel gtk2-devel gtkglext-devel libjpeg-devel libogg-devel libstdc++-devel +%if %DISTRIBUTABLE +%else +BuildRequires: ffmpeg-devel +%endif Summary: Free Flash movie player -Version: 0.7.1.cvs20061019 +Version: 0.7.2.cvs20061220 Release: 1 -License: GNU General Public License (GPL) - all versions +License: GNU General Public License (GPL) Group: Productivity/Networking/Web/Browsers Source: %{name}-%{version}.tar.bz2 -Patch: gnash-pango-check-fix.diff +Patch: gnash-no-movies.diff +Patch1: gnash-gcc-warning-fixes.diff URL: http://www.gnu.org/software/gnash/ BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -42,6 +47,7 @@ %prep %setup -n gnash %patch +%patch1 %build autoreconf -fi @@ -58,7 +64,7 @@ %install make DESTDIR=$RPM_BUILD_ROOT install rm -f $RPM_BUILD_ROOT%{_libdir}/*.la -rm -f $RPM_BUILD_ROOT%{_libdir}/*.so +# rm -f $RPM_BUILD_ROOT%{_libdir}/*.so rm -f $RPM_BUILD_ROOT%{_libdir}/browser-plugins/*.la %clean @@ -74,6 +80,10 @@ %{_datadir}/gnash %changelog -n gnash +* Wed Dec 20 2006 - tiwai@suse.de +- updated to CVS 2006.12.20 snapshot + * version bump to 0.7.2 + * lots of code fixes and optimizations * Thu Oct 19 2006 - tiwai@suse.de - updated to CVS 2006.10.19 snapshot * sound backend fixes ++++++ gnash-0.7.1.cvs20061019.tar.bz2 -> gnash-0.7.2.cvs20061220.tar.bz2 ++++++ ++++ 121610 lines of diff (skipped) ++++++ gnash-gcc-warning-fixes.diff ++++++ --- cygnal/statistics.cpp-dist 2006-12-20 12:07:54.000000000 +0100 +++ cygnal/statistics.cpp 2006-12-20 12:08:04.000000000 +0100 @@ -80,7 +80,7 @@ float Statistics::getFPS() { - + return 0; } int --- cygnal/stream.cpp-dist 2006-12-20 12:10:14.000000000 +0100 +++ cygnal/stream.cpp 2006-12-20 12:11:02.000000000 +0100 @@ -280,6 +280,7 @@ GNASH_REPORT_FUNCTION; _state = PREVIEW; + return true; } // Stream a series of thumbnails @@ -288,6 +289,7 @@ GNASH_REPORT_FUNCTION; _state = THUMBNAIL; + return true; } // Pause the stream @@ -296,6 +298,7 @@ GNASH_REPORT_FUNCTION; _state = PAUSE; + return true; } // Seek within the stream @@ -304,6 +307,7 @@ GNASH_REPORT_FUNCTION; _state = SEEK; + return true; } // Upload a stream into a sandbox @@ -312,6 +316,7 @@ GNASH_REPORT_FUNCTION; _state = UPLOAD; + return true; } // Stream a single "real-time" source. @@ -319,6 +324,7 @@ GNASH_REPORT_FUNCTION; _state = MULTICAST; + return true; } } // end of cygnal namespace --- cygnal/netstats.cpp-dist 2006-12-20 12:07:10.000000000 +0100 +++ cygnal/netstats.cpp 2006-12-20 12:07:40.000000000 +0100 @@ -58,6 +58,7 @@ _bytes = stats.getBytes(); _codec = stats.getCodec(); _type = stats.getFileType(); + return *this; } } // end of cygnal namespace --- cygnal/http.cpp-dist 2006-12-20 12:08:15.000000000 +0100 +++ cygnal/http.cpp 2006-12-20 12:09:58.000000000 +0100 @@ -62,13 +62,14 @@ { GNASH_REPORT_FUNCTION; // this = obj; + return *this; } string HTTP::waitForGetRequest(Network &net) { GNASH_REPORT_FUNCTION; - + return ""; } string @@ -129,8 +130,10 @@ if (writeNet(reply, strlen(reply)) == strlen(reply)) { dbglogfile << "Sent GET Reply: " << reply << endl; + return true; } else { dbglogfile << "Couldn't send GET Reply" << endl; + return false; } } --- backend/sound_handler_sdl.cpp-dist 2006-12-20 12:11:21.000000000 +0100 +++ backend/sound_handler_sdl.cpp 2006-12-20 12:13:02.000000000 +0100 @@ -838,7 +838,7 @@ assert(sound->data_size > sound->position); // temp raw buffer - Uint8* tmp_raw_buffer; + Uint8* tmp_raw_buffer = 0; unsigned int tmp_raw_buffer_size; #ifdef USE_FFMPEG @@ -959,7 +959,8 @@ } // Move the new data to the sound-struct - delete[] tmp_raw_buffer; + if (tmp_raw_buffer) + delete[] tmp_raw_buffer; tmp_raw_buffer = reinterpret_cast<Uint8*>(adjusted_data); tmp_raw_buffer_size = adjusted_size; ++++++ gnash-no-movies.diff ++++++ --- configure.ac-dist 2006-12-20 11:46:51.000000000 +0100 +++ configure.ac 2006-12-20 11:46:57.000000000 +0100 @@ -821,7 +821,6 @@ testsuite/actionscript.all/Makefile testsuite/samples/Makefile testsuite/misc-ming.all/Makefile -testsuite/movies.all/Makefile testsuite/server/Makefile gui/Makefile extensions/Makefile --- testsuite/Makefile.am-dist 2006-12-20 11:44:53.000000000 +0100 +++ testsuite/Makefile.am 2006-12-20 11:44:59.000000000 +0100 @@ -8,7 +8,6 @@ server \ samples \ misc-ming.all \ - movies.all \ actionscript.all \ $(NULL) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 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