# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_INIT([astr], [0.1], [don@donm.cc])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([1.14 foreign subdir-objects -Wall -Werror])
AC_CONFIG_SRCDIR([astr.h])
AC_CONFIG_HEADERS([config.h])
# Checks for programs.
AM_PROG_AR
AC_PROG_CC_C99
AC_PROG_INSTALL
AC_PROG_MKDIR_P
AC_PROG_RANLIB
# Checks for libraries.
# Checks for header files.
AC_HEADER_STDBOOL
AC_CHECK_HEADERS([stdlib.h string.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_C_INLINE
AC_TYPE_SIZE_T
# Checks for library functions.
AC_CHECK_FUNC([vasprintf])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT