blob: 5533607fbd3b2c4abdbf1c7e66a8d127247d1e75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
dnl Only compile motionautoaway on Linux (needs video4linux)
dnl Disabled for now. It breaks with patched Linux 2.4 kernels and
dnl vanilla Linux 2.5 and 2.6 kernels
#AC_MSG_CHECKING([if motionautoaway plugin should be compiled])
#if test "x`uname`" = "xLinux"; then
# COMPILEMOTION=true
# AC_SUBST(COMPILEMOTION)
# AC_MSG_RESULT([yes])
#else
COMPILEMOTION=
# AC_SUBST(COMPILEMOTION)
# AC_MSG_RESULT([no])
#fi
AM_CONDITIONAL(include_motionautoaway, test -n "$COMPILEMOTION")
|