From 7db9d8d76ff61c4802ac15559dcea6fa54ff567a Mon Sep 17 00:00:00 2001 From: Henrik Rydberg Date: Fri, 6 Aug 2010 21:11:17 +0200 Subject: initial bzr repo at rev 27 --- configure.ac | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 configure.ac (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..6d8a72b --- /dev/null +++ b/configure.ac @@ -0,0 +1,31 @@ +# Initialize Autoconf +AC_PREREQ([2.60]) +AC_INIT([Gesture Recognition And Instantiation Library], + [1.0.3], + [], + [grail]) +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.0]) + +AC_CONFIG_FILES([Makefile + src/Makefile + test/Makefile + grail.pc]) +AC_OUTPUT -- cgit v1.2.3