Compare commits

...

6 Commits

Author SHA1 Message Date
Stephane Bortzmeyer a2d550d529 TAG Release 6.0.2 17 years ago
Stephane Bortzmeyer c89bd99ef1 Ready for 6.0.2 17 years ago
Stephane Bortzmeyer 228f1c70d2 Stupid typo in shell script (detected by NetBSD/pkgsrc people) 17 years ago
Stephane Bortzmeyer 2eba6276a9 Merge the better -h explanations in the 6.0 maintenance branch 17 years ago
Stephane Bortzmeyer ce4405764b Prepare for 6.0.2 maintenance version 17 years ago
Stephane Bortzmeyer edf36ff1a5 Start maintenance branch for 6.0 17 years ago

@ -1,3 +1,7 @@
6.0.2 (2007-04-09)
* Bug fixes only
6.0.1 (2007-04-04)
* Bug fixes only

@ -1,5 +1,5 @@
dnl $Id$
AC_INIT(echoping, 6.1-BETA, bortz@users.sourceforge.net)
AC_INIT(echoping, 6.0.2, bortz@users.sourceforge.net)
AC_CANONICAL_HOST
AC_PROG_CC(cc gcc)
AC_LIBTOOL_DLOPEN

@ -17,7 +17,7 @@ echoping \- tests a remote host with TCP or UDP
.RI [-s size]
.RI [-n number]
.RI [-w delay]
.RI [-h url]
.RI [-h url-or-path]
.RI [-R]
.RI [-i url]
.RI [-p priority]
@ -84,13 +84,12 @@ Use UDP instead of TCP
Use the "discard" service instead of echo
.IP -c
Use the "chargen" service instead of echo
.IP -h\ url
.IP -h\ url-or-path
Use the HTTP protocol (instead of echo) for the given URL. If the
hostname is the Web server, the URL has to
be a relative one (for instance '/' or '/pics/foobar.gif') because HTTP 1.0
servers will not understand a request for an absolute URL. If the
hostname is a proxy/cache like Squid, the URL has to
be an absolute one.
hostname is the Web server, the argument has to
be a path, a relative URL (for instance '/' or '/pics/foobar.gif'). If the
hostname is a proxy/cache like Squid, the argument has to
be an absolute URL.
.IP -R
Accept HTTP status codes 3xx (redirections) as normal responses (the
default is to regard them as errors)

@ -5,10 +5,10 @@ AM_INIT_AUTOMAKE(foreign)
dnl TODO: write a XML-RPC plugin for Adamsnames' interface. See a first version in contrib/
AC_ARG_ENABLE(plugin,
[ --enable-plugin=LIST Build only the following plugins],
[if test "$enableval" == "no"; then
[if test "$enableval" = "no"; then
AC_MSG_ERROR([You cannot disable plugin support])
else
if test "$enableval" == "yes"; then
if test "$enableval" = "yes"; then
AC_MSG_ERROR([You must indicate a list of plugins with this option])
else
plugins=$enableval

Loading…
Cancel
Save