| Back to the Main Page. | ac_prog_ssh |
Download the M4 Source. |
AC_PROG_SSH
2002-04-11 0.5.65 : InstalledPackages
Gleen Salmon <gleensalmon@yahoo.com>
license: GPLWithACException
SSH = which ssh
AC_DEFUN([AC_PROG_SSH],[
AC_REQUIRE([AC_EXEEXT])dnl
AC_PATH_PROG(SSH, ssh$EXEEXT, nocommand)
if test "$SSH" = nocommand; then
AC_MSG_ERROR([ssh not found in $PATH])
fi;dnl
])