gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog configure.ac


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog configure.ac
Date: Thu, 19 Jul 2007 14:44:29 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  07/07/19 14:44:29

Modified files:
        .              : ChangeLog configure.ac 

Log message:
                * configure.ac: test(1) string equality operator is "=",
                  not "==". Other attempt at fixing bug #20525.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.3766&r2=1.3767
http://cvs.savannah.gnu.org/viewcvs/gnash/configure.ac?cvsroot=gnash&r1=1.357&r2=1.358

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.3766
retrieving revision 1.3767
diff -u -b -r1.3766 -r1.3767
--- ChangeLog   19 Jul 2007 00:18:53 -0000      1.3766
+++ ChangeLog   19 Jul 2007 14:44:28 -0000      1.3767
@@ -1,3 +1,8 @@
+2007-07-19 Sandro Santilli <address@hidden>
+
+       * configure.ac: test(1) string equality operator is "=",
+         not "==". Other attempt at fixing bug #20525.
+
 2007-07-18 Sandro Santilli <address@hidden>
 
        * configure.ac: quote `backticked commands` when assigning to

Index: configure.ac
===================================================================
RCS file: /sources/gnash/gnash/configure.ac,v
retrieving revision 1.357
retrieving revision 1.358
diff -u -b -r1.357 -r1.358
--- configure.ac        19 Jul 2007 00:18:54 -0000      1.357
+++ configure.ac        19 Jul 2007 14:44:28 -0000      1.358
@@ -15,7 +15,7 @@
 dnl  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 dnl  
 
-dnl $Id: configure.ac,v 1.357 2007/07/19 00:18:54 strk Exp $
+dnl $Id: configure.ac,v 1.358 2007/07/19 14:44:28 strk Exp $
 
 AC_PREREQ(2.50)
 AC_INIT(gnash, cvs)
@@ -1016,7 +1016,7 @@
 
 dnl Define winsock if we're on windows. We could do something complicated,
 dnl but since AC_EXEEXT does it for us, we'll do this the easy way.
-if test x"$EXEEXT" == "exe"; then
+if test x"$EXEEXT" = "exe"; then
   AC_DEFINE(HAVE_WINSOCK,1,[This is defined is we are on Win32])
 fi
 
@@ -1718,7 +1718,7 @@
 if test x"$BOOST_LIBS" != x; then
     # Only cygnal requires date_time at present, so it's OK if either
     # you don't want cygnal or do have date_time installed.
-    if test x"$cygnal" == xno -o x"$boost_date_time" = xyes; then
+    if test x"$cygnal" = xno -o x"$boost_date_time" = xyes; then
        echo "        BOOST flags are: $BOOST_CFLAGS"
        echo "        BOOST libs are: $BOOST_LIBS"
     else
@@ -1733,7 +1733,7 @@
     echo "        ERROR: No BOOST development package installed!"
     echo "               Install it from http://www.boost.org";
     echo "               or .deb users: apt-get install libboost-thread-dev"
-    if test x"$cygnal" == xyes; then
+    if test x"$cygnal" = xyes; then
     echo "                              and libboost-date-time-dev"
     fi
     echo "               or .rpm users: yum install boost-devel"




reply via email to

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