gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] [SCM] Gnash branch, release_0_8_9, updated. release_0_8_9


From: Sandro Santilli
Subject: [Gnash-commit] [SCM] Gnash branch, release_0_8_9, updated. release_0_8_9_final-5-gb8f0190
Date: Tue, 26 Apr 2011 19:11:57 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnash".

The branch, release_0_8_9 has been updated
       via  b8f01902697d4d58476ef75965c2cdb8e7e90294 (commit)
       via  d1d7830ff46cd99d97556b29dda0882fb0272560 (commit)
       via  a735f5ce78b52a29df83a382d37843beba4c0469 (commit)
      from  c20d207118ffbed3d8efb1e0303b9ca47ff11afc (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit//commit/?id=b8f01902697d4d58476ef75965c2cdb8e7e90294


commit b8f01902697d4d58476ef75965c2cdb8e7e90294
Author: Sandro Santilli <address@hidden>
Date:   Tue Apr 26 20:50:29 2011 +0200

    Fix conditional used to build DUMP gui

diff --git a/NEWS b/NEWS
index 5281bfc..eab0ff2 100644
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,7 @@ Bugs fixed since 0.8.9:
 
  * #32579: boost::lock_error from CurlSession::lockSharedHandle()
  * RPM packaging
+ * DUMP gui build scripts
 
 Gnash 0.8.9
 2011/03/19
diff --git a/gui/dump/Makefile.am b/gui/dump/Makefile.am
index 38bc0fa..7b6a009 100644
--- a/gui/dump/Makefile.am
+++ b/gui/dump/Makefile.am
@@ -22,7 +22,7 @@
 
 AUTOMAKE_OPTIONS = -Wno-portability
 
-if BUILD_FB_GUI
+if BUILD_DUMP_GUI
 
 # top_builddir and top_srcdir are for revno.h; its location depends on
 # whether we're building from a snapshot or a checkout.
@@ -114,4 +114,4 @@ dump_gnash_LDADD = \
        $(GNASH_LIBS) \
        $(AGG_LIBS) 
 
-endif                          # BUILD_FB_GUI
+endif                          # BUILD_DUMP_GUI

http://git.savannah.gnu.org/cgit//commit/?id=d1d7830ff46cd99d97556b29dda0882fb0272560


commit d1d7830ff46cd99d97556b29dda0882fb0272560
Author: Sandro Santilli <address@hidden>
Date:   Fri Apr 8 12:02:15 2011 +0200

    Stub NEWS for an 0.8.9.1 (or however it'd be called)

diff --git a/NEWS b/NEWS
index db1fb9b..5281bfc 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,11 @@
+Gnash 0.8.9.1
+????/??/??
+
+Bugs fixed since 0.8.9: 
+
+ * #32579: boost::lock_error from CurlSession::lockSharedHandle()
+ * RPM packaging
+
 Gnash 0.8.9
 2011/03/19
 

http://git.savannah.gnu.org/cgit//commit/?id=a735f5ce78b52a29df83a382d37843beba4c0469


commit a735f5ce78b52a29df83a382d37843beba4c0469
Author: Sandro Santilli <address@hidden>
Date:   Fri Apr 8 11:57:54 2011 +0200

    Backport fix for bug #32579

diff --git a/gui/Player.cpp b/gui/Player.cpp
index 1ec707b..7037092 100644
--- a/gui/Player.cpp
+++ b/gui/Player.cpp
@@ -496,6 +496,8 @@ Player::run(int argc, char* argv[], const std::string& 
infile,
     // Now that we know about movie size, create gui window.
     _gui->createWindow(_url.c_str(), _width, _height, _xPosition, _yPosition);
 
+    { // movie_root scope (https://savannah.gnu.org/bugs/index.php?32579)
+
     movie_root root(*_movieDef, _gui->getClock(), *_runResources);
     
     _callbacksHandler.reset(new CallbacksHandler(*_gui, *this)); 
@@ -647,6 +649,8 @@ Player::run(int argc, char* argv[], const std::string& 
infile,
 
     _gui->run();
 
+    } // kill movie_root here (https://savannah.gnu.org/bugs/index.php?32579)
+
     log_debug("Main loop ended, cleaning up");
 
     // Clean up as much as possible, so valgrind will help find actual leaks.

-----------------------------------------------------------------------

Summary of changes:
 NEWS                 |    9 +++++++++
 gui/Player.cpp       |    4 ++++
 gui/dump/Makefile.am |    4 ++--
 3 files changed, 15 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

[Prev in Thread] Current Thread [Next in Thread]