2000-05-08 12:49:37 +02:00
|
|
|
dnl $Id: aclocal.m4,v 1.2 2000/05/08 10:49:37 damien Exp $
|
2000-05-02 01:56:41 +02:00
|
|
|
dnl
|
|
|
|
dnl OpenSSH-specific autoconf macros
|
|
|
|
dnl
|
|
|
|
|
2000-05-08 12:49:37 +02:00
|
|
|
|
|
|
|
dnl OSSH_CHECK_HEADER_FOR_FIELD(field, header, symbol)
|
|
|
|
dnl Does AC_EGREP_HEADER on 'header' for the string 'field'
|
|
|
|
dnl If found, set 'symbol' to be defined. Cache the result.
|
|
|
|
dnl TODO: This is not foolproof, better to compile and read from there
|
|
|
|
AC_DEFUN(OSSH_CHECK_HEADER_FOR_FIELD, [
|
|
|
|
# look for field '$1' in header '$2'
|
|
|
|
dnl This strips characters illegal to m4 from the header filename
|
|
|
|
ossh_safe=`echo "$2" | sed 'y%./+-%__p_%'`
|
|
|
|
dnl
|
|
|
|
ossh_varname="ossh_cv_$ossh_safe""_has_"$1
|
|
|
|
AC_MSG_CHECKING(for $1 field in $2)
|
|
|
|
AC_CACHE_VAL($ossh_varname, [
|
|
|
|
AC_EGREP_HEADER($1, $2, [ dnl
|
|
|
|
eval "$ossh_varname=yes" dnl
|
|
|
|
], [ dnl
|
|
|
|
eval "$ossh_varname=no" dnl
|
|
|
|
]) dnl
|
|
|
|
])
|
|
|
|
ossh_result=`eval "echo "$"$ossh_varname"`
|
|
|
|
if test -n "`echo $ossh_varname`"; then
|
|
|
|
AC_MSG_RESULT($ossh_result)
|
|
|
|
if test "x$ossh_result" = "xyes"; then
|
|
|
|
AC_DEFINE($3)
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl OSSH_PATH_ENTROPY_PROG(variablename, command):
|
2000-05-02 01:56:41 +02:00
|
|
|
dnl Tidiness function, sets 'undef' if not found, and does the AC_SUBST
|
2000-05-08 12:49:37 +02:00
|
|
|
AC_DEFUN(OSSH_PATH_ENTROPY_PROG, [
|
|
|
|
AC_PATH_PROG($1, $2)
|
2000-05-02 01:56:41 +02:00
|
|
|
if test -z "[$]$1" ; then
|
|
|
|
$1="undef"
|
|
|
|
fi
|
2000-05-08 12:49:37 +02:00
|
|
|
AC_SUBST($1)
|
2000-05-02 01:56:41 +02:00
|
|
|
])
|
|
|
|
|