# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ([2.65]) AC_INIT([syncupdate], [10.1], [debathena@mit.edu]) AM_INIT_AUTOMAKE([foreign -Wall]) AM_MAINTAINER_MODE([enable]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_SRCDIR([src/syncupdate.c]) AC_CONFIG_HEADERS([config.h]) # Checks for programs. AC_PROG_CC m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) LT_INIT # Checks for libraries. # Checks for header files. AC_CHECK_HEADERS([fcntl.h stdlib.h string.h unistd.h]) # Checks for typedefs, structures, and compiler characteristics. # Checks for library functions. AC_CHECK_FUNCS([strerror]) AC_CONFIG_FILES([Makefile src/Makefile man/Makefile]) AC_OUTPUT