29 lines
760 B
Plaintext
29 lines
760 B
Plaintext
# -*- Autoconf -*-
|
|
# Process this file with autoconf to produce a configure script.
|
|
|
|
AC_PREREQ([2.71])
|
|
AC_INIT([fatcopy], [0.0.1], [/dev/null])
|
|
AC_CONFIG_SRCDIR([ff.c])
|
|
AC_CONFIG_HEADERS([config.h])
|
|
|
|
# Checks for programs.
|
|
AC_PROG_CC
|
|
|
|
# Checks for libraries.
|
|
|
|
# Checks for header files.
|
|
AC_CHECK_HEADERS([stdlib.h stdio.h], [], AC_MSG_ERROR([Cannot find all required headers]))
|
|
AM_INIT_AUTOMAKE([foreign])
|
|
AM_SILENT_RULES([yes])
|
|
|
|
# Checks for typedefs, structures, and compiler characteristics.
|
|
AC_TYPE_UINT16_T
|
|
AC_TYPE_UINT32_T
|
|
AC_TYPE_UINT64_T
|
|
|
|
# Checks for library functions.
|
|
AC_CHECK_FUNCS([printf fprintf strdup], [], AC_MSG_ERROR([Cannot find all required functions]))
|
|
|
|
AC_CONFIG_FILES([Makefile])
|
|
AC_OUTPUT
|