blob: 418862bfd942f13cc636058db78780c1815d1d18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $NetBSD: configure.ac,v 1.3 2003/07/26 20:24:00 salo Exp $
#
# Autoconf definition file for mkdep.
#
AC_INIT([mkdep], [noversion], [tech-toolchain@NetBSD.org])
AC_PATH_PROG(BSHELL, sh, )
if test x"$BSHELL" = x; then
AC_MSG_ERROR([sh must be somewhere on \$PATH])
fi
AC_CONFIG_FILES(host-mkdep)
AC_PROG_AWK
AC_PROG_CPP
AC_OUTPUT
|