summaryrefslogtreecommitdiffstats
path: root/aclocal.m4
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-05-02 09:56:41 +1000
committerDamien Miller <djm@mindrot.org>2000-05-02 09:56:41 +1000
commit0437b33e54fd72060d17908d6abf96bfabaacad2 (patch)
treef4fe0e394d30b915b5647c8c6d48c86b43337c96 /aclocal.m4
parent6f83b8e34d3dc8227d7cf39989c5966abde2305e (diff)
- Add Andre Lucas' <andre.lucas@dial.pipex.com> patch to read entropyV_2_0_0_BETA1
gathering commands from a text file
Diffstat (limited to 'aclocal.m4')
-rw-r--r--aclocal.m415
1 files changed, 15 insertions, 0 deletions
diff --git a/aclocal.m4 b/aclocal.m4
new file mode 100644
index 00000000..65783346
--- /dev/null
+++ b/aclocal.m4
@@ -0,0 +1,15 @@
+dnl $Id: aclocal.m4,v 1.1 2000/05/01 23:57:51 damien Exp $
+dnl
+dnl OpenSSH-specific autoconf macros
+dnl
+
+dnl AC_PATH_ENTROPY_PROG(variablename, command):
+dnl Tidiness function, sets 'undef' if not found, and does the AC_SUBST
+AC_DEFUN(AC_PATH_ENTROPY_PROG, [
+ AC_PATH_PROG([$1], [$2])
+ if test -z "[$]$1" ; then
+ $1="undef"
+ fi
+ AC_SUBST([$1])
+])
+