gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog libbase/log.h [release_0_7_2]


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog libbase/log.h [release_0_7_2]
Date: Mon, 06 Nov 2006 14:13:20 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Branch:         release_0_7_2
Changes by:     Sandro Santilli <strk>  06/11/06 14:13:20

Modified files:
        .              : ChangeLog 
        libbase        : log.h 

Log message:
                * libbase/log.h: back-ported IF_VERBOSE_MALFORMED_SWF and
                  IF_VERBOSE_ASCODING_ERRORS macros.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&only_with_tag=release_0_7_2&r1=1.1412.2.93&r2=1.1412.2.94
http://cvs.savannah.gnu.org/viewcvs/gnash/libbase/log.h?cvsroot=gnash&only_with_tag=release_0_7_2&r1=1.30.2.1&r2=1.30.2.2

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.1412.2.93
retrieving revision 1.1412.2.94
diff -u -b -r1.1412.2.93 -r1.1412.2.94
--- ChangeLog   6 Nov 2006 13:23:59 -0000       1.1412.2.93
+++ ChangeLog   6 Nov 2006 14:13:20 -0000       1.1412.2.94
@@ -1,5 +1,7 @@
 2006-11-06 Sandro Santilli <address@hidden>
 
+       * libbase/log.h: back-ported IF_VERBOSE_MALFORMED_SWF and
+          IF_VERBOSE_ASCODING_ERRORS macros.
        * server/parser/sprite_definition.h: dirty patch for dirtier
          programmatically-created MovieClip implementation.
        * testsuite/actionscript.all/MovieClip.as: expect failures.

Index: libbase/log.h
===================================================================
RCS file: /sources/gnash/gnash/libbase/log.h,v
retrieving revision 1.30.2.1
retrieving revision 1.30.2.2
diff -u -b -r1.30.2.1 -r1.30.2.2
--- libbase/log.h       30 Oct 2006 14:28:47 -0000      1.30.2.1
+++ libbase/log.h       6 Nov 2006 14:13:20 -0000       1.30.2.2
@@ -17,7 +17,7 @@
 // 
 //
 
-/* $Id: log.h,v 1.30.2.1 2006/10/30 14:28:47 rsavoye Exp $ */
+/* $Id: log.h,v 1.30.2.2 2006/11/06 14:13:20 strk Exp $ */
 
 #ifndef GNASH_LOG_H
 #define GNASH_LOG_H
@@ -177,6 +177,13 @@
 // Undefine this to completely remove action debugging at compile-time
 #define VERBOSE_ACTION 1
 
+// Undefine this to remove ActionScript errors verbosity
+#define VERBOSE_ASCODING_ERRORS 
+
+// Undefine this to remove invalid SWF verbosity
+#define VERBOSE_MALFORMED_SWF
+
+
 #ifdef VERBOSE_PARSE
 #define IF_VERBOSE_PARSE(x) do { if ( dbglogfile.getParserDump() ) { x; } } 
while (0);
 #else
@@ -189,6 +196,20 @@
 #define IF_VERBOSE_ACTION(x)
 #endif
 
+#ifdef VERBOSE_ASCODING_ERRORS
+// TODO: add a getActionDebug() method to LogFile and use it
+#define IF_VERBOSE_ASCODING_ERRORS(x) {x}
+#else
+#define IF_VERBOSE_ASCODING_ERRORS(x)
+#endif
+
+#ifdef VERBOSE_MALFORMED_SWF
+// TODO: add a getSWFDebug() method to LogFile and use it
+#define IF_VERBOSE_MALFORMED_SWF(x) {x}
+#else
+#define IF_VERBOSE_MALFORMED_SWF(x)
+#endif
+
 extern DSOEXPORT LogFile dbglogfile;
 
 class DSOEXPORT __Host_Function_Report__ {




reply via email to

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