blob: d35bf61cc5550879408c3e26028448b12647cdc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
AC_ARG_WITH(libraw1394,
[AC_HELP_STRING(--with-libraw1394,
[enable visualization of ieee1394 devices through libraw1394 @<:@default=check@:>@])],
[], with_libraw1394=check)
VIEW1394_SUBDIR=
if test "x$with_libraw1394" != xno; then
KDE_CHECK_HEADER(libraw1394/raw1394.h, VIEW1394_SUBDIR=view1394)
if test "x$with_libraw1394" != xcheck && test -z "$VIEW1394_SUBDIR"; then
AC_MSG_ERROR([--with-libraw1394 was given, but test for libraw1394 failed])
fi
fi
AM_CONDITIONAL(include_kcontrol_view1394, test -n "$VIEW1394_SUBDIR")
|