~oif-packaging/evemu/oneiric

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Francis Ginther
  • Date: 2012-08-20 16:17:58 UTC
  • mfrom: (0.1.32 1.0.5)
  • mto: (14.1.2 oneiric)
  • mto: This revision was merged to the branch mainline in revision 15.
  • Revision ID: francis.ginther@canonical.com-20120820161758-5ht9bd2rgdg3v6hj
Tags: upstream-1.0.5.1
ImportĀ upstreamĀ versionĀ 1.0.5.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Initialize Autoconf
2
 
AC_PREREQ([2.60])
3
 
AC_INIT([Kernel device emulation],
4
 
        [1.0.5],
5
 
        [],
6
 
        [utouch-evemu])
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
 
# man page generation
26
 
AC_ARG_VAR([XMLTO], [Path to xmlto command])
27
 
AC_PATH_PROG([XMLTO], [xmlto])
28
 
AC_ARG_VAR([ASCIIDOC], [Path to asciidoc command])
29
 
AC_PATH_PROG([ASCIIDOC], [asciidoc])
30
 
AM_CONDITIONAL([HAVE_DOCTOOLS], [test "x$XMLTO" != "x" && test "x$ASCIIDOC" != "x"])
31
 
if test "x$XMLTO" = "x" || test "x$ASCIIDOC" = "x"; then
32
 
        AC_MSG_WARN([xmlto or asciidoc not found - cannot create man pages without it])
33
 
fi
34
 
 
35
 
 
36
 
AC_CONFIG_FILES([Makefile
37
 
                 src/Makefile
38
 
                 tools/Makefile
39
 
                 utouch-evemu.pc])
40
 
AC_OUTPUT