gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog configure.ac macros/docbook.m4


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog configure.ac macros/docbook.m4
Date: Fri, 13 Jun 2008 19:05:11 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  08/06/13 19:05:10

Modified files:
        .              : ChangeLog configure.ac 
        macros         : docbook.m4 

Log message:
        Applied patch by Jeremy C. Reed <address@hidden>:
        The world doesn't always use bash's builtin test.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.6922&r2=1.6923
http://cvs.savannah.gnu.org/viewcvs/gnash/configure.ac?cvsroot=gnash&r1=1.544&r2=1.545
http://cvs.savannah.gnu.org/viewcvs/gnash/macros/docbook.m4?cvsroot=gnash&r1=1.31&r2=1.32

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.6922
retrieving revision 1.6923
diff -u -b -r1.6922 -r1.6923
--- ChangeLog   13 Jun 2008 18:48:10 -0000      1.6922
+++ ChangeLog   13 Jun 2008 19:05:09 -0000      1.6923
@@ -1,3 +1,8 @@
+2008-06-13 Jeremy C. Reed <address@hidden>
+
+       * configure.ac, macros/docbook.m4: The world doesn't always use bash's
+         builtin test.
+
 2008-06-13 Sandro Santilli <address@hidden>
 
        * server/asobj/System.cpp: LOG_ONCE log_unimpl..

Index: configure.ac
===================================================================
RCS file: /sources/gnash/gnash/configure.ac,v
retrieving revision 1.544
retrieving revision 1.545
diff -u -b -r1.544 -r1.545
--- configure.ac        12 Jun 2008 19:08:07 -0000      1.544
+++ configure.ac        13 Jun 2008 19:05:10 -0000      1.545
@@ -2553,7 +2553,7 @@
         echo "               This version of ffmpeg may not work!" >&3
         echo "               Version 51.27.0 or newer is highly recommended." 
>&3
       else
-       if test x"${avformat_h}" == x; then
+       if test x"${avformat_h}" = x; then
           echo "        ERROR: FFMPEG's libavcodec header is installed but not 
libavformat." >&3
           echo "               You can install FFMPEG from 
http://ffmpeg.mplayerhq.hu"; >&3
           echo "               or .deb users: apt-get install libavformat-dev" 
>&3
@@ -2920,7 +2920,7 @@
   fi
 fi
 
-if test "$GMSGFMT" == ":"; then
+if test "$GMSGFMT" = ":"; then
   echo "        WARNING: You need the gettext package installed to use 
translations." >&4
   echo "                 Required for building a package or 'make distcheck'" 
>&4
   echo "                 Install it from http://www.gnu.org/software/gettext/"; 
>&4

Index: macros/docbook.m4
===================================================================
RCS file: /sources/gnash/gnash/macros/docbook.m4,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -b -r1.31 -r1.32
--- macros/docbook.m4   16 May 2008 13:23:45 -0000      1.31
+++ macros/docbook.m4   13 Jun 2008 19:05:10 -0000      1.32
@@ -58,7 +58,7 @@
     AC_MSG_NOTICE([checking for other programs needed to process the DocBook 
files])
     AC_PATH_PROG(FOP, fop.sh, [],
        
[$PATH:/usr/local/fop-0.20.5/:/usr/fop-0.20.5/:/usr/local/fop:/usr/lib/java/fop])
-    if test x"$FOP" == x; then
+    if test x"$FOP" = x; then
         AC_PATH_PROG(FOP, fop, [],
             
[$PATH:/usr/local/fop-0.20.5/:/usr/fop-0.20.5/:/usr/local/fop:/usr/lib/java/fop])
     fi




reply via email to

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