On Mon, Mar 12, 2007 at 10:49:47AM -0800, John Gilmore wrote: > I checked gnash out of CVS today and tried to configure and build it > on a straight Fedora Core 6 system. Did ./autogen.sh, then I got these > errors from "./configure --enable-renderer=agg": > > checking for ming-config... no > checking ming.h usability... no > checking ming.h presence... no > checking for ming.h... no > checking for Ming header... > ./configure: line 12525: test: -ge: unary operator expected > checking for doxygen... /usr/bin/doxygen
Could you try this patch ? Index: configure.ac =================================================================== RCS file: /sources/gnash/gnash/configure.ac,v retrieving revision 1.271 diff -U2 -r1.271 configure.ac --- configure.ac 9 Mar 2007 18:38:35 -0000 1.271 +++ configure.ac 12 Mar 2007 22:49:51 -0000 @@ -491,5 +491,5 @@ AC_PATH_MING AM_CONDITIONAL(ENABLE_MING, [ test x"$MAKESWF" != x ]) -AM_CONDITIONAL(MAKESWF_SUPPORTS_PREBUILT_CLIPS, [ test $MING_VERSION_CODE -ge 00040002 ]) +AM_CONDITIONAL(MAKESWF_SUPPORTS_PREBUILT_CLIPS, [ test "$MING_VERSION_CODE" -ge 00040002 ]) AC_ARG_WITH([swfdec_testsuite], --strk; _______________________________________________ Gnash-dev mailing list [email protected] http://lists.gnu.org/mailman/listinfo/gnash-dev

