gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash configure.ac


From: Markus Gothe
Subject: [Gnash-commit] gnash configure.ac
Date: Thu, 29 Nov 2007 04:54:03 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Markus Gothe <nihilus>  07/11/29 04:54:03

Modified files:
        .              : configure.ac 

Log message:
        Check if we've got some thing to compare with before doing the 
        comparsion.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/configure.ac?cvsroot=gnash&r1=1.447&r2=1.448

Patches:
Index: configure.ac
===================================================================
RCS file: /sources/gnash/gnash/configure.ac,v
retrieving revision 1.447
retrieving revision 1.448
diff -u -b -r1.447 -r1.448
--- configure.ac        29 Nov 2007 00:40:20 -0000      1.447
+++ configure.ac        29 Nov 2007 04:54:03 -0000      1.448
@@ -15,7 +15,7 @@
 dnl  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 dnl  
 
-dnl $Id: configure.ac,v 1.447 2007/11/29 00:40:20 nihilus Exp $
+dnl $Id: configure.ac,v 1.448 2007/11/29 04:54:03 nihilus Exp $
 
 AC_PREREQ(2.50)
 AC_INIT(gnash, cvs)
@@ -662,7 +662,7 @@
 rm -f .tmp
 dnl is there any good way to report what we found here?
 AC_MSG_RESULT()
-if test "${archiver} " -eq 1; then
+if test x"${archiver}" != x -a "${archiver}" -eq 1; then
 dnl   if test "$enable_shared" = no; then
 dnl     AR="libtool -static"
 dnl   else
@@ -1131,9 +1131,9 @@
 AM_CONDITIONAL(HAVE_QT, [test x$has_qt = xyes])
 AM_CONDITIONAL(HAVE_QTOPIA, [test x$has_qtopia = xyes])
 
-AM_CONDITIONAL(HAVE_QT_2, [test "${gnash_qt_version} " -eq 2])
-AM_CONDITIONAL(HAVE_QT_3, [test "${gnash_qt_version} " -eq 3])
-AM_CONDITIONAL(HAVE_QT_4, [test "${gnash_qt_version} " -eq 4])
+AM_CONDITIONAL(HAVE_QT_2, [test x"${gnash_qt_version}" != x -a 
"${gnash_qt_version}" -eq 2])
+AM_CONDITIONAL(HAVE_QT_3, [test x"${gnash_qt_version}" != x -a 
"${gnash_qt_version}" -eq 3])
+AM_CONDITIONAL(HAVE_QT_4, [test x"${gnash_qt_version}" != x -a 
"${gnash_qt_version}" -eq 4])
 
 dnl Need GLIB for both GTK and GST
 if test x$build_gtk = xyes -o x${media_handler} = "xgst"; then




reply via email to

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