diff options
| author | Henrik Rydberg <rydberg@euromail.se> | 2010-12-30 17:58:01 +0100 |
|---|---|---|
| committer | Henrik Rydberg <rydberg@euromail.se> | 2010-12-30 17:58:01 +0100 |
| commit | f0aba58c91933a4702a7cc74f7daf4192868f570 (patch) | |
| tree | 648c41fe09adb72344769dd6242638cbad835482 /configure.ac | |
Initial load of utouch-framev1.0.0
Compiles and runs on mtdev. ABI proof.
Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..0ff758f --- /dev/null +++ b/configure.ac | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | # Initialize Autoconf | ||
| 2 | AC_PREREQ([2.60]) | ||
| 3 | AC_INIT([Touch Frame Library], | ||
| 4 | [1.0.0], | ||
| 5 | [], | ||
| 6 | [utouch-frame]) | ||
| 7 | AC_CONFIG_SRCDIR([Makefile.am]) | ||
| 8 | AC_CONFIG_HEADERS([config.h]) | ||
| 9 | AC_CONFIG_AUX_DIR([config-aux]) | ||
| 10 | |||
| 11 | # Initialize Automake | ||
| 12 | AM_INIT_AUTOMAKE([foreign dist-bzip2]) | ||
| 13 | AM_MAINTAINER_MODE | ||
| 14 | |||
| 15 | LIB_VERSION=1:0:0 | ||
| 16 | AC_SUBST([LIB_VERSION]) | ||
| 17 | |||
| 18 | # Initialize libtool | ||
| 19 | AC_PROG_LIBTOOL | ||
| 20 | |||
| 21 | # Checks for programs. | ||
| 22 | AC_PROG_CC | ||
| 23 | AC_PROG_INSTALL | ||
| 24 | |||
| 25 | PKG_CHECK_MODULES([MTDEV], [mtdev >= 1.1]) | ||
| 26 | PKG_CHECK_MODULES([EVEMU], [utouch-evemu >= 1.0]) | ||
| 27 | |||
| 28 | AC_CONFIG_FILES([Makefile | ||
| 29 | src/Makefile | ||
| 30 | test/Makefile | ||
| 31 | tools/Makefile | ||
| 32 | utouch-frame.pc]) | ||
| 33 | AC_OUTPUT | ||
