git.fiddlerwoaroof.com
configure.ac
e993f970
 #                                               -*- Autoconf -*-
 # Process this file with autoconf to produce a configure script.
 
2278a14d
 
e993f970
 AC_PREREQ([2.69])
 AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS])
 AC_CONFIG_SRCDIR([hello.c])
 AC_CONFIG_HEADERS([config.h])
2278a14d
 AM_INIT_AUTOMAKE
e993f970
 
 # Checks for programs.
 AC_PROG_CC
 
 # Checks for libraries.
 
 # Checks for header files.
5045c3df
 AC_CHECK_HEADERS([sys/time.h])
e993f970
 
 # Checks for typedefs, structures, and compiler characteristics.
 
 # Checks for library functions.
5045c3df
 AC_CHECK_FUNCS([gettimeofday])
e993f970
 
 AC_CONFIG_FILES([Makefile])
 AC_OUTPUT