1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.68])
AC_INIT([x11-touchscreen-calibrator], [0.2], [https://github.com/fourdollars/x11-touchscreen-calibrator/issues], [x11-touchscreen-calibrator], [http://fourdollars.github.io/x11-touchscreen-calibrator/])
AC_CONFIG_SRCDIR([x11-touchscreen-calibrator.c])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIR([m4])
LT_PREREQ([2.4.2])
LT_INIT
AM_MAINTAINER_MODE([enable])
AM_INIT_AUTOMAKE([dist-xz no-dist-gzip silent-rules])
AM_SILENT_RULES([yes])
# Checks for programs.
AC_PROG_CC
AM_PROG_CC_C_O
# Checks for libraries.
PKG_CHECK_MODULES(X11, [x11 xi inputproto xrandr])
# Checks for header files.
AC_PATH_X
AC_CHECK_HEADERS([stdlib.h])
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
|