27 lines
679 B
Plaintext
27 lines
679 B
Plaintext
# -*- Autoconf -*-
|
|
# Process this file with autoconf to produce a configure script.
|
|
|
|
AC_PREREQ([2.68])
|
|
AC_INIT([tcfs], [0.1], [matthias@blankertz.org], [tcfs], [http://blankertz.org])
|
|
AM_INIT_AUTOMAKE
|
|
AC_CONFIG_SRCDIR([src/tcfs.c])
|
|
AC_CONFIG_HEADERS([config.h])
|
|
|
|
# Checks for programs.
|
|
AC_PROG_CC
|
|
AM_PROG_CC_C_O
|
|
|
|
# Checks for libraries.
|
|
PKG_CHECK_MODULES([FUSE], [fuse >= 2.8])
|
|
|
|
# Checks for header files.
|
|
AC_CHECK_HEADERS([fcntl.h stddef.h stdlib.h string.h])
|
|
|
|
# Checks for typedefs, structures, and compiler characteristics.
|
|
|
|
# Checks for library functions.
|
|
AC_CHECK_FUNCS([memset strerror])
|
|
|
|
AC_CONFIG_FILES([Makefile])
|
|
AC_OUTPUT
|