gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] /srv/bzr/gnash/rtmp r10090: Add tests for netat and wget,


From: rob
Subject: [Gnash-commit] /srv/bzr/gnash/rtmp r10090: Add tests for netat and wget, which are used in testing. Display the
Date: Wed, 01 Apr 2009 11:37:11 -0600
User-agent: Bazaar (1.5)

------------------------------------------------------------
revno: 10090
committer: address@hidden
branch nick: rtmp
timestamp: Wed 2009-04-01 11:37:11 -0600
message:
  Add tests for netat and wget, which are used in testing. Display the
  results of the tests.
modified:
  configure.ac
=== modified file 'configure.ac'
--- a/configure.ac      2009-04-01 02:49:29 +0000
+++ b/configure.ac      2009-04-01 17:37:11 +0000
@@ -1203,7 +1203,6 @@
 AM_CONDITIONAL(HAVE_DMALLOC, [ test x$has_dmalloc = xyes ])
 
 AC_PATH_TOOL([AUTOTRACE], [autotrace])
-AC_PATH_TOOL([NETCAT], [netcat])
 AC_HEADER_DIRENT
 
 dnl -----------------------------------------------------------------
@@ -1635,6 +1634,11 @@
 fi
 AM_CONDITIONAL(ENABLE_RED5_TESTING, [ test x"$RED5_HOST" != x ])
 
+AC_PATH_PROG(NETCAT, nc)
+AM_CONDITIONAL(HAS_NETCAT, [ test x"$NETCAT" != x ])
+AC_PATH_PROG(WGET, wget)
+AM_CONDITIONAL(HAS_WGET, [ test x"$WGET" != x ])
+
 dnl
 dnl See if we can use the swfmill, mtasc, swfc and haxe based testsuites 
 dnl
@@ -3200,6 +3204,17 @@
   fi
 fi
 
+if test x"$NETCAT" != x; then
+    echo "        You have netcat installed, which is only used for testing"
+else
+    echo "        Install netcat for networking test support"
+fi
+if test x"$WGET" != x; then
+    echo "        You have wget installed, which is only used for testing"
+else
+    echo "        Install wget for networking test support"
+fi
+
 if test x$cross_compiling = xyes; then
   AC_MSG_NOTICE([This build is setup for cross compiling])
 fi


reply via email to

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