CVSROOT: /sources/gnash Module name: gnash Changes by: Markus Gothe <nihilus> 07/11/29 00:25:07
Modified files: . : configure.ac ChangeLog Log message: Fixed "test -eq" for bourne shell. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/gnash/configure.ac?cvsroot=gnash&r1=1.445&r2=1.446 http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.5005&r2=1.5006 Patches: Index: configure.ac =================================================================== RCS file: /sources/gnash/gnash/configure.ac,v retrieving revision 1.445 retrieving revision 1.446 diff -u -b -r1.445 -r1.446 --- configure.ac 28 Nov 2007 22:28:52 -0000 1.445 +++ configure.ac 29 Nov 2007 00:25:06 -0000 1.446 @@ -15,7 +15,7 @@ dnl Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA dnl -dnl $Id: configure.ac,v 1.445 2007/11/28 22:28:52 rsavoye Exp $ +dnl $Id: configure.ac,v 1.446 2007/11/29 00:25:06 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 "${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 "${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]) dnl Need GLIB for both GTK and GST if test x$build_gtk = xyes -o x${media_handler} = "xgst"; then Index: ChangeLog =================================================================== RCS file: /sources/gnash/gnash/ChangeLog,v retrieving revision 1.5005 retrieving revision 1.5006 diff -u -b -r1.5005 -r1.5006 --- ChangeLog 29 Nov 2007 00:12:36 -0000 1.5005 +++ ChangeLog 29 Nov 2007 00:25:07 -0000 1.5006 @@ -30,6 +30,7 @@ installed by default and pkg-config is unaware of it. * macros/qtopia.m4: Clean up. * macros/agg.m4: --libs-only-L cannot have worked ever. + * configure.ac: Fixed 'test -eq'. 2007-11-28 Sandro Santilli <[EMAIL PROTECTED]> _______________________________________________ Gnash-commit mailing list Gnash-commit@gnu.org http://lists.gnu.org/mailman/listinfo/gnash-commit