~webapps/webapps-applications/13.10

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
AC_INIT(webapps,2.4.16)

AC_SUBST([PACKAGE_NAME], ["$PACKAGE_NAME"])
AC_SUBST([PACKAGE_VERSION], ["$PACKAGE_VERSION"])

AM_INIT_AUTOMAKE([1.11])

LT_PREREQ([2.2.6])
LT_INIT([disable-static])

AM_PATH_PYTHON([2.5])
AC_SUBST(PYTHON)

AM_SILENT_RULES([yes])

AC_PROG_SED

AC_CONFIG_MACRO_DIR([m4])

LT_INIT

PKG_CHECK_MODULES(UNITY_WEBAPPS, [libunity_webapps-0.2])

dnl ========== Tests ==========
AC_ARG_ENABLE(tests, AC_HELP_STRING([--enable-tests],
    [Enable tests. [default=no]]),
    [enable_tests="yes"], [enable_tests="no"])

if test "x$enable_tests" = "xyes"; then
    AC_DEFINE([ENABLE_TESTS], 1, [Enable tests.])
fi

AM_CONDITIONAL([ENABLE_TESTS], [test "x$enable_tests" = "xyes"])

AC_OUTPUT([Makefile
scripts/Makefile
tests/Makefile
common/Makefile
default-apps/Makefile
default-apps/icon-themes/Makefile
default-apps/icon-themes/unity-webapps-applications/Makefile
default-apps/icon-themes/unity-webapps-applications/apps/Makefile
default-apps/icon-themes/unity-webapps-applications/apps/128/Makefile
])