44 lines (37 with data), 940 Bytes
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.61)
AC_INIT([oooarkavr],[0.0.0],[jgoppert@usres.sourceforge.net])
AM_INIT_AUTOMAKE([])
AC_CONFIG_SRCDIR([config.h.in])
AC_CONFIG_HEADER([config.h])
# Checks for programs.
AC_CHECK_PROG([AVRDUDE],[avrdude],[avrdude])
AC_PROG_LIBTOOL
AC_PROG_CXX
AC_PROG_CC
AC_PROG_MAKE_SET
# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([inttypes.h stdlib.h string.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_C_CONST
AC_C_INLINE
AC_TYPE_INT8_T
AC_TYPE_SIZE_T
AC_TYPE_UINT16_T
AC_TYPE_UINT32_T
AC_TYPE_UINT8_T
AC_C_VOLATILE
# Checks for library functions.
AC_FUNC_MALLOC
AC_CHECK_FUNCS([memset socket strrchr strstr])
AC_CONFIG_FILES([Makefile
oooarkavr/Makefile
test/Makefile
app/Makefile
doc/Doxyfile
setup
])
AC_OUTPUT