Sandro Santilli
2017-01-28 14:18:44 UTC
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, master has been updated
via ff92e0ae816440b81ecb46215717a376a77491be (commit)
from 36028f40cc8fee39d411e13284f2d7334e84b9cc (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=ff92e0ae816440b81ecb46215717a376a77491be
commit ff92e0ae816440b81ecb46215717a376a77491be
Author: Sandro Santilli <***@kbt.io>
Date: Sat Jan 28 15:18:09 2017 +0100
Fix invalid octal number in expansion of macro MING_VERSION_CODE
GCC 5.4.0 was complaining about it
diff --git a/testsuite/misc-ming.all/ming_utils.h b/testsuite/misc-ming.all/ming_utils.h
index 42be9fe..dd6c618 100644
--- a/testsuite/misc-ming.all/ming_utils.h
+++ b/testsuite/misc-ming.all/ming_utils.h
@@ -23,7 +23,7 @@
#include <ming.h>
-#if MING_VERSION_CODE >= 00040004
+#if MING_VERSION_CODE >= 40004
# define MING_SUPPORTS_INIT_ACTIONS
#endif
@@ -40,9 +40,9 @@ void SWFMovie_writeExports(SWFMovie movie);
* A cleaner approach is likely switch to
* using newSWFAction always and change the
* macro to make it output compileSWFActionCode
- * when MING_VERSION_CODE < 000040004
+ * when MING_VERSION_CODE < 40004
*/
-#if MING_VERSION_CODE >= 00040004
+#if MING_VERSION_CODE >= 40004
# define compileSWFActionCode newSWFAction
#else
# define newSWFAction compileSWFActionCode
@@ -53,7 +53,7 @@ void SWFMovie_writeExports(SWFMovie movie);
* and replaced by 'call'. Before that version 'call' would
* never be recognized as a "callframe" action
*/
-#if MING_VERSION_CODE >= 00040006
+#if MING_VERSION_CODE >= 40006
# define CALLFRAME "call"
#else
# define CALLFRAME "callFrame"
-----------------------------------------------------------------------
Summary of changes:
testsuite/misc-ming.all/ming_utils.h | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
hooks/post-receive
generated because a ref change was pushed to the repository containing
the project "Gnash".
The branch, master has been updated
via ff92e0ae816440b81ecb46215717a376a77491be (commit)
from 36028f40cc8fee39d411e13284f2d7334e84b9cc (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=ff92e0ae816440b81ecb46215717a376a77491be
commit ff92e0ae816440b81ecb46215717a376a77491be
Author: Sandro Santilli <***@kbt.io>
Date: Sat Jan 28 15:18:09 2017 +0100
Fix invalid octal number in expansion of macro MING_VERSION_CODE
GCC 5.4.0 was complaining about it
diff --git a/testsuite/misc-ming.all/ming_utils.h b/testsuite/misc-ming.all/ming_utils.h
index 42be9fe..dd6c618 100644
--- a/testsuite/misc-ming.all/ming_utils.h
+++ b/testsuite/misc-ming.all/ming_utils.h
@@ -23,7 +23,7 @@
#include <ming.h>
-#if MING_VERSION_CODE >= 00040004
+#if MING_VERSION_CODE >= 40004
# define MING_SUPPORTS_INIT_ACTIONS
#endif
@@ -40,9 +40,9 @@ void SWFMovie_writeExports(SWFMovie movie);
* A cleaner approach is likely switch to
* using newSWFAction always and change the
* macro to make it output compileSWFActionCode
- * when MING_VERSION_CODE < 000040004
+ * when MING_VERSION_CODE < 40004
*/
-#if MING_VERSION_CODE >= 00040004
+#if MING_VERSION_CODE >= 40004
# define compileSWFActionCode newSWFAction
#else
# define newSWFAction compileSWFActionCode
@@ -53,7 +53,7 @@ void SWFMovie_writeExports(SWFMovie movie);
* and replaced by 'call'. Before that version 'call' would
* never be recognized as a "callframe" action
*/
-#if MING_VERSION_CODE >= 00040006
+#if MING_VERSION_CODE >= 40006
# define CALLFRAME "call"
#else
# define CALLFRAME "callFrame"
-----------------------------------------------------------------------
Summary of changes:
testsuite/misc-ming.all/ming_utils.h | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
hooks/post-receive
--
Gnash
Gnash