Warning: Can't synchronize with repository "(default)" (No changeset 96d22ec3fa3ef6de3ea8dc0d7d398adc9aa071cf in the repository). Look in the Trac log for more information.

source: Dbus API specifications/configure.ac @ c955abc

Revision c955abc, 1.2 KB checked in by Simon Busch <morphis@…>, 12 months ago (diff)

Bump version 2012.06.05.1

  • Property mode set to 100644
Line 
1##############################################################################
2# init
3AC_INIT([fso-specs], [2012.06.05.1], [smartphones-standards@linuxtogo.org], [fso-specs])
4AC_CONFIG_SRCDIR([tools/rules.mk])
5AM_INIT_AUTOMAKE([-Wall -Werror foreign no-dist-gzip dist-bzip2])
6m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
7
8##############################################################################
9# xlst is necessary for specs generation
10AC_PATH_PROG(XSLTPROC, xsltproc, no)
11AC_SUBST(XSLTPROC)
12if test $XSLTPROC = "no"; then
13    AC_MSG_ERROR([xsltproc is mandatory for this package])
14fi
15
16##############################################################################
17# python is mandatory for docs generation
18AC_PATH_PROG(PYTHON, python, no)
19AC_SUBST(PYTHON)
20if test $PYTHON = "no"; then
21    AC_MSG_ERROR([python is mandatory for this package])
22fi
23
24##############################################################################
25# output
26AC_CONFIG_FILES([
27        Makefile
28        html/index.html
29        fso-specs.pc
30])
31AC_OUTPUT
32echo
33echo
34echo
35echo "fso-specs configured successfully."
36echo
37echo "Now type 'make' to compile and 'make install' to install this package."
Note: See TracBrowser for help on using the repository browser.