]> andersk Git - openssh.git/blame - aclocal.m4
doc
[openssh.git] / aclocal.m4
CommitLineData
d3083fbd 1dnl $Id$
2dnl
3dnl OpenSSH-specific autoconf macros
4dnl
5
58d100bf 6
7dnl OSSH_CHECK_HEADER_FOR_FIELD(field, header, symbol)
8dnl Does AC_EGREP_HEADER on 'header' for the string 'field'
9dnl If found, set 'symbol' to be defined. Cache the result.
10dnl TODO: This is not foolproof, better to compile and read from there
11AC_DEFUN(OSSH_CHECK_HEADER_FOR_FIELD, [
12# look for field '$1' in header '$2'
13 dnl This strips characters illegal to m4 from the header filename
14 ossh_safe=`echo "$2" | sed 'y%./+-%__p_%'`
15 dnl
16 ossh_varname="ossh_cv_$ossh_safe""_has_"$1
17 AC_MSG_CHECKING(for $1 field in $2)
18 AC_CACHE_VAL($ossh_varname, [
19 AC_EGREP_HEADER($1, $2, [ dnl
20 eval "$ossh_varname=yes" dnl
21 ], [ dnl
22 eval "$ossh_varname=no" dnl
23 ]) dnl
24 ])
25 ossh_result=`eval "echo "$"$ossh_varname"`
26 if test -n "`echo $ossh_varname`"; then
27 AC_MSG_RESULT($ossh_result)
28 if test "x$ossh_result" = "xyes"; then
29 AC_DEFINE($3)
30 fi
31 else
32 AC_MSG_RESULT(no)
33 fi
34])
35
36dnl OSSH_PATH_ENTROPY_PROG(variablename, command):
d3083fbd 37dnl Tidiness function, sets 'undef' if not found, and does the AC_SUBST
58d100bf 38AC_DEFUN(OSSH_PATH_ENTROPY_PROG, [
39 AC_PATH_PROG($1, $2)
d3083fbd 40 if test -z "[$]$1" ; then
41 $1="undef"
42 fi
58d100bf 43 AC_SUBST($1)
d3083fbd 44])
45
This page took 0.100438 seconds and 5 git commands to generate.