forked from CESNET/Nemea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
53 lines (42 loc) · 2.15 KB
/
configure.ac
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
45
46
47
48
49
50
51
52
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.63])
AC_INIT([nemea], [2.6.0], [[email protected]])
AM_INIT_AUTOMAKE([foreign subdir-objects])
RELEASE=1
AC_SUBST(RELEASE)
USERNAME=`git config --get user.name`
USERMAIL=`git config --get user.email`
AC_SUBST(USERNAME)
AC_SUBST(USERMAIL)
# Check for rpmbuild
AC_CHECK_PROG(RPMBUILD, rpmbuild, rpmbuild, [""])
AC_SUBST(RPMBUILD)
if test -z "$RPMBUILD"; then
AC_MSG_WARN([Due to missing rpmbuild you will not able to generate RPM package.])
fi
RPM_RELEASE=1
AC_SUBST(RPM_RELEASE)
AM_CONDITIONAL(MAKE_RPMS, test x$RPMBUILD != x)
AC_ARG_ENABLE([supervisor], AC_HELP_STRING([--disable-supervisor], [Disable supervisor.]),
[AM_CONDITIONAL([ENABLE_SUPERVISOR], [test "x$enableval" = xyes])],
[AM_CONDITIONAL([ENABLE_SUPERVISOR], [true])])
AC_ARG_ENABLE([modules], AC_HELP_STRING([--disable-modules], [Disable NEMEA modules.]),
[AM_CONDITIONAL([ENABLE_MODULES], [test "x$enableval" = xyes])],
[AM_CONDITIONAL([ENABLE_MODULES], [true])])
AC_ARG_ENABLE([detectors], AC_HELP_STRING([--disable-detectors], [Disable NEMEA detectors.]),
[AM_CONDITIONAL([ENABLE_DETECTORS], [test "x$enableval" = xyes])],
[AM_CONDITIONAL([ENABLE_DETECTORS], [true])])
AC_CONFIG_FILES([Makefile
nemea.spec])
AC_CONFIG_SUBDIRS([nemea-framework nemea-supervisor modules detectors])
# By default, users expects "repobuild" behavior, i.e., use relative path to NEMEA framework.
# If there is some "repobuild" arg of configure, do not add "--enable-repobuild".
if test -z "$ac_configure_args" || echo "$ac_configure_args" | grep -q -v -e 'repobuild'; then
ac_configure_args="$ac_configure_args --enable-repobuild"
fi
AC_OUTPUT
echo "Components:"
echo " NEMEA modules....................: `if [[ -z "$ENABLE_MODULES_TRUE" ]]; then echo enabled; else echo disabled; fi`"
echo " NEMEA detectors..................: `if [[ -z "$ENABLE_DETECTORS_TRUE" ]]; then echo enabled; else echo disabled; fi`"
echo " NEMEA supervisor.................: `if [[ -z "$ENABLE_SUPERVISOR_TRUE" ]]; then echo enabled; else echo disabled; fi`"