Google

Back to the Main Page.

ac_prog_scp

Download the M4 Source.

Synopsis

AC_PROG_SCP

Version

1.1 (2002/09/12)     Installed_Packages @ ac-archive-0.5.39

Author

Gleen Salmon <gleensalmon@yahoo.com>

Description

Check for the program 'scp', let script continue if exists, pops up error message if not.

Besides checking existence, this macro also set these environment variables upon completion:

     SCP = which scp

M4 Source Code
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
])