From f0aba58c91933a4702a7cc74f7daf4192868f570 Mon Sep 17 00:00:00 2001 From: Henrik Rydberg Date: Thu, 30 Dec 2010 17:58:01 +0100 Subject: Initial load of utouch-frame Compiles and runs on mtdev. ABI proof. Signed-off-by: Henrik Rydberg --- configure.ac | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 configure.ac (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..0ff758f --- /dev/null +++ b/configure.ac @@ -0,0 +1,33 @@ +# Initialize Autoconf +AC_PREREQ([2.60]) +AC_INIT([Touch Frame Library], + [1.0.0], + [], + [utouch-frame]) +AC_CONFIG_SRCDIR([Makefile.am]) +AC_CONFIG_HEADERS([config.h]) +AC_CONFIG_AUX_DIR([config-aux]) + +# Initialize Automake +AM_INIT_AUTOMAKE([foreign dist-bzip2]) +AM_MAINTAINER_MODE + +LIB_VERSION=1:0:0 +AC_SUBST([LIB_VERSION]) + +# Initialize libtool +AC_PROG_LIBTOOL + +# Checks for programs. +AC_PROG_CC +AC_PROG_INSTALL + +PKG_CHECK_MODULES([MTDEV], [mtdev >= 1.1]) +PKG_CHECK_MODULES([EVEMU], [utouch-evemu >= 1.0]) + +AC_CONFIG_FILES([Makefile + src/Makefile + test/Makefile + tools/Makefile + utouch-frame.pc]) +AC_OUTPUT -- cgit v1.2.3