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