gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] [SCM] Gnash branch, master, updated. 176ab22d0a98b4f9b142


From: Sandro Santilli
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. 176ab22d0a98b4f9b142ef1c15ea70346abb2bbb
Date: Mon, 08 Nov 2010 18:32:46 +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, master has been updated
       via  176ab22d0a98b4f9b142ef1c15ea70346abb2bbb (commit)
      from  fa5845165d23580976c2ff8d7ff09bbb72d116a5 (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=176ab22d0a98b4f9b142ef1c15ea70346abb2bbb


commit 176ab22d0a98b4f9b142ef1c15ea70346abb2bbb
Author: Sandro Santilli <address@hidden>
Date:   Mon Nov 8 19:28:12 2010 +0100

    Fix bogus shell syntax in Ming detection

diff --git a/configure.ac b/configure.ac
index 1d8c407..1049809 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2164,28 +2164,31 @@ if test x$cross_compiling = xno; then
   AC_PATH_MING
 fi
 
-makeswf_installed=[test "$MAKESWF" != x && test $MING_VERSION_CODE -ge 
00040000 ]
+if test x"$MING_VERSION_CODE" = x; then
+ MING_VERSION_CODE=00000000
+fi
 
-AM_CONDITIONAL(ENABLE_MING, $makeswf_installed)
+AM_CONDITIONAL(ENABLE_MING,
+       [ test x"$MAKESWF" != x -a $MING_VERSION_CODE -gt 00040000 ])
 
 AM_CONDITIONAL(MING_VERSION_0_4,
-        [ ${makeswf_installed} && test $MING_VERSION_CODE -ge 00040000  ])
+        [ test $MING_VERSION_CODE -ge 00040000  ])
 AM_CONDITIONAL(MAKESWF_SUPPORTS_PREBUILT_CLIPS,
-        [ ${makeswf_installed} && test $MING_VERSION_CODE -ge 00040002  ])
+        [ test $MING_VERSION_CODE -ge 00040002  ])
 AM_CONDITIONAL(MING_SUPPORTS_INIT_ACTIONS,
-        [ ${makeswf_installed} && test $MING_VERSION_CODE -ge 00040004  ])
+        [ test $MING_VERSION_CODE -ge 00040004  ])
 AM_CONDITIONAL(MING_SUPPORTS_REPLACE_TAG,
-        [ ${makeswf_installed} && test $MING_VERSION_CODE -ge 00040005 ])
+        [ test $MING_VERSION_CODE -ge 00040005 ])
 AM_CONDITIONAL(MING_SUPPORTS_SWFBUTTON_ADD_CHARACTER,
-        [ ${makeswf_installed} && test $MING_VERSION_CODE -ge 00040005 ])
+        [ test $MING_VERSION_CODE -ge 00040005 ])
 AM_CONDITIONAL(MING_SUPPORTS_STREAMING_SOUND,
-        [ ${makeswf_installed} && test $MING_VERSION_CODE -ge 00040006 ])
+        [ test $MING_VERSION_CODE -ge 00040006 ])
 AM_CONDITIONAL(MING_SUPPORTS_SWFBUTTON_SET_DEPTH,
-        [ ${makeswf_installed} && test $MING_VERSION_CODE -ge 00040006 ])
+        [ test $MING_VERSION_CODE -ge 00040006 ])
 AM_CONDITIONAL(MING_VERSION_0_4_3,
-        [ ${makeswf_installed} && test $MING_VERSION_CODE -ge 00040300 ])
+        [ test $MING_VERSION_CODE -ge 00040300 ])
 AM_CONDITIONAL(MING_VERSION_0_4_4,
-        [ ${makeswf_installed} && test $MING_VERSION_CODE -ge 00040400 ])
+        [ test $MING_VERSION_CODE -ge 00040400 ])
 
 if test x$cross_compiling = xno; then
   AC_ARG_WITH([swfdec_testsuite],

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

Summary of changes:
 configure.ac |   25 ++++++++++++++-----------
 1 files changed, 14 insertions(+), 11 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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