NetBSD/tools/compat/configure.ac
tv 87d14ee4ac Add the framework for autoconf-based src/tools/compat structure. This will
(after it is more fleshed out) allow the host tools to work more cleanly
on non-NetBSD hosts.
2001-12-11 21:17:56 +00:00

20 lines
416 B
Plaintext

# $NetBSD: configure.ac,v 1.1 2001/12/11 21:17:58 tv Exp $
#
# Autoconf definition file for libnbcompat.
#
AC_INIT([libnbcompat], [noversion], [lib-bug-people@netbsd.org])
AC_CONFIG_HEADERS(config.h)
AC_CONFIG_FILES(defs.mk)
AC_TYPE_SIZE_T
AC_CHECK_HEADER(stddef.h)
AC_CHECK_HEADER(sys/types.h)
AC_CHECK_FUNCS(errx)
AC_SEARCH_LIBS(fparseln, util, AC_DEFINE(HAVE_FPARSELN))
AC_CHECK_FUNCS(setprogname)
AC_OUTPUT