# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ([2.64]) AC_INIT([redshift], [0.1], [jonlst@gmail.com]) AC_CONFIG_SRCDIR([redshift.c]) AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE([dist-bzip2]) # Checks for programs. AC_PROG_CC_C99 # Checks for libraries. PKG_CHECK_MODULES([XCB], [xcb xcb-randr]) # Checks for header files. AC_CHECK_HEADERS([locale.h stdint.h stdlib.h string.h unistd.h]) # Checks for typedefs, structures, and compiler characteristics. AC_TYPE_UINT16_T # Checks for library functions. AC_FUNC_MALLOC AC_CHECK_FUNCS([pow setlocale strchr]) AC_CONFIG_FILES([ Makefile ]) AC_OUTPUT echo " $PACKAGE_NAME $VERSION prefix: ${prefix} compiler: ${CC} cflags: ${CFLAGS} ldflags: ${LDFLAGS} "