gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog libmedia/MediaParser.h libmedia...


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog libmedia/MediaParser.h libmedia...
Date: Tue, 23 Oct 2007 18:13:59 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  07/10/23 18:13:59

Modified files:
        .              : ChangeLog 
        libmedia       : MediaParser.h sound_handler.h 
        plugin         : plugin.cpp 

Log message:
        Patch by Takashi Iwai <address@hidden>:
        
                * plugin/plugin.cpp: include <cstring>
                * libmedia/MediaParser.h: include <memory>
                * libmedia/sound_handler.h: include <cstring>

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.4676&r2=1.4677
http://cvs.savannah.gnu.org/viewcvs/gnash/libmedia/MediaParser.h?cvsroot=gnash&r1=1.5&r2=1.6
http://cvs.savannah.gnu.org/viewcvs/gnash/libmedia/sound_handler.h?cvsroot=gnash&r1=1.1&r2=1.2
http://cvs.savannah.gnu.org/viewcvs/gnash/plugin/plugin.cpp?cvsroot=gnash&r1=1.86&r2=1.87

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.4676
retrieving revision 1.4677
diff -u -b -r1.4676 -r1.4677
--- ChangeLog   23 Oct 2007 17:33:42 -0000      1.4676
+++ ChangeLog   23 Oct 2007 18:13:59 -0000      1.4677
@@ -1,3 +1,9 @@
+2007-10-23 Takashi Iwai <address@hidden>
+
+       * plugin/plugin.cpp: include <cstring>
+       * libmedia/MediaParser.h: include <memory>
+       * libmedia/sound_handler.h: include <cstring>
+
 2007-10-23 Sandro Santilli <address@hidden>
 
        * testsuite/actionscript.all/Object.as: more failures about 

Index: libmedia/MediaParser.h
===================================================================
RCS file: /sources/gnash/gnash/libmedia/MediaParser.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- libmedia/MediaParser.h      4 Oct 2007 16:12:42 -0000       1.5
+++ libmedia/MediaParser.h      23 Oct 2007 18:13:59 -0000      1.6
@@ -16,7 +16,7 @@
 // along with this program; if not, write to the Free Software
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
-// $Id: MediaParser.h,v 1.5 2007/10/04 16:12:42 strk Exp $
+// $Id: MediaParser.h,v 1.6 2007/10/23 18:13:59 strk Exp $
 
 #ifndef __MEDIAPARSER_H__
 #define __MEDIAPARSER_H__
@@ -34,6 +34,8 @@
 }
 #endif // USE_FFMPEG
 
+#include <memory>
+
 namespace gnash {
 
 /// The type of the codec id passed in the AudioInfo or VideoInfo class

Index: libmedia/sound_handler.h
===================================================================
RCS file: /sources/gnash/gnash/libmedia/sound_handler.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- libmedia/sound_handler.h    27 Sep 2007 23:59:53 -0000      1.1
+++ libmedia/sound_handler.h    23 Oct 2007 18:13:59 -0000      1.2
@@ -18,7 +18,7 @@
 // 
 //
 
-/* $Id: sound_handler.h,v 1.1 2007/09/27 23:59:53 tgc Exp $ */
+/* $Id: sound_handler.h,v 1.2 2007/10/23 18:13:59 strk Exp $ */
 
 /// \page sound_handler_intro Sound handler introduction
 ///
@@ -39,6 +39,7 @@
 #include <vector>
 #include <memory>
 #include <cassert>
+#include <cstring>
 
 namespace gnash {
        class stream;

Index: plugin/plugin.cpp
===================================================================
RCS file: /sources/gnash/gnash/plugin/plugin.cpp,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -b -r1.86 -r1.87
--- plugin/plugin.cpp   19 Oct 2007 01:47:54 -0000      1.86
+++ plugin/plugin.cpp   23 Oct 2007 18:13:59 -0000      1.87
@@ -15,7 +15,7 @@
 // along with this program; if not, write to the Free Software
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
-/* $Id: plugin.cpp,v 1.86 2007/10/19 01:47:54 nihilus Exp $ */
+/* $Id: plugin.cpp,v 1.87 2007/10/23 18:13:59 strk Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -52,6 +52,7 @@
 #include <unistd.h>
 #include <cstdio>
 #include <cstddef>
+#include <cstring>
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <sys/wait.h>




reply via email to

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