# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ([2.66]) AC_INIT(x11guirecord, 0.25, ctrondlp@cpan.org) AM_INIT_AUTOMAKE(x11guirecord, 0.25) AC_CONFIG_SRCDIR([src/script_file.c]) AC_CONFIG_HEADERS([config.h]) # Checks for programs. AC_PROG_CC # Checks for libraries. # Checks for header files. AC_PATH_X AC_CHECK_HEADERS([stdlib.h string.h sys/time.h unistd.h]) # Checks for typedefs, structures, and compiler characteristics. # Checks for library functions. AC_CHECK_FUNCS([gettimeofday]) AC_OUTPUT(Makefile src/Makefile man/Makefile)