]> git.ipfire.org Git - ipfire.org.git/blob - configure.ac
wiki: Only keep redirection to the new docs section
[ipfire.org.git] / configure.ac
1 AC_PREREQ([2.64])
2
3 AC_INIT([ipfire.org],
4 [000],
5 [michael.tremer@ipfire.org],
6 [ipfire.org],
7 [https://www.ipfire.org/])
8
9 AC_CONFIG_AUX_DIR([build-aux])
10
11 AC_PREFIX_DEFAULT([/usr])
12
13 AM_INIT_AUTOMAKE([
14 foreign
15 1.11
16 -Wall
17 -Wno-portability
18 silent-rules
19 tar-pax
20 subdir-objects
21 ])
22 AM_SILENT_RULES([yes])
23
24 AC_PROG_LN_S
25 AC_PROG_MKDIR_P
26 AC_PROG_SED
27
28 # Python
29 AM_PATH_PYTHON([3.4])
30
31 # sass
32 AC_CHECK_PROG(SASSC, [sassc], [sassc])
33 if test -z "${SASSC}"; then
34 AC_MSG_ERROR([sassc is required])
35 fi
36
37 # convert from ImageMagick
38 AC_CHECK_PROG(CONVERT, [convert], [convert])
39 if test -z "${CONVERT}"; then
40 AC_MSG_ERROR([convert is required])
41 fi
42
43 # ffmpeg
44 AC_CHECK_PROG(FFMPEG, [ffmpeg], [ffmpeg])
45 if test -z "${FFMPEG}"; then
46 AC_MSG_ERROR([ffmpeg is required])
47 fi
48
49 # ------------------------------------------------------------------------------
50
51 AC_ARG_WITH([systemd],
52 AS_HELP_STRING([--with-systemd], [Enable systemd support.])
53 )
54
55 AS_IF([test "x$with_systemd" != "xno"],
56 [PKG_CHECK_MODULES(systemd, [libsystemd],
57 [have_systemd=yes], [have_systemd=no])],
58 [have_systemd=no]
59 )
60
61 AS_IF([test "x$have_systemd" = "xyes"],
62 [AC_MSG_CHECKING([for systemd system unit directory])
63 AC_ARG_WITH([systemdsystemunitdir],
64 AS_HELP_STRING([--with-systemdsystemunitdir=DIR], [Directory for systemd service files]),
65 [], [with_systemdsystemunitdir=$($PKG_CONFIG --variable=systemdsystemunitdir systemd)]
66 )
67
68 AC_SUBST([systemdsystemunitdir], [$with_systemdsystemunitdir])
69
70 if test -n "$systemdsystemunitdir" -a "x$systemdsystemunitdir" != xno; then
71 AC_MSG_RESULT([$systemdsystemunitdir])
72 else
73 AC_MSG_ERROR([not found (try --with-systemdsystemunitdir)])
74 fi
75 ],
76 [AS_IF([test "x$with_systemd" = "xyes"],
77 [AC_MSG_ERROR([Systemd support is enabled but no systemd has been found.])
78 ])
79 ])
80
81 AM_CONDITIONAL(HAVE_SYSTEMD, [test "x$have_systemd" = "xyes"])
82
83 datadir="${datadir}/ipfire.org"
84 localedir="${datadir}/translations"
85
86 AC_CONFIG_FILES([
87 Makefile
88 ])
89
90 AC_OUTPUT
91 AC_MSG_RESULT([
92 ${PACKAGE_NAME} ${VERSION}
93
94 prefix: ${prefix}
95 sysconfdir: ${sysconfdir}
96 datadir: ${datadir}
97 localedir: ${localedir}
98
99 systemd support ${have_systemd}
100 Python version: ${PYTHON_VERSION}
101 ])