"Fossies" - the Fresh Open Source Software Archive 
Member "scponly-20110526/aclocal.m4" (7 Mar 2003, 425 Bytes) of package /linux/privat/old/scponly-20110526.tgz:
As a special service "Fossies" has tried to format the requested text file into HTML format (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
1 dnl Defines $1 in config.h to the full path to the binary $2, with
2 dnl assertions. $3 contains an optional colon-separated list of
3 dnl directories besides $PATH to search.
4 AC_DEFUN([SCPONLY_PATH_PROG_DEFINE],
5 [AC_PATH_PROG([scponly_$1], [$2], [],
6 [`echo "$PATH:$3" | sed -e 's/:/ /'`])
7 test -z $scponly_$1 && echo "Can't find path to '$2'" && exit 1
8 AC_DEFINE_UNQUOTED([$1], "$scponly_$1")])
9
10