~ubuntu-branches/ubuntu/feisty/kdetv/feisty

« back to all changes in this revision

Viewing changes to kdetv/plugins/video/configure.in.in

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2005-09-17 23:25:16 UTC
  • Revision ID: james.westby@ubuntu.com-20050917232516-9wdsn3ckagbqieh8
Tags: upstream-0.8.8
ImportĀ upstreamĀ versionĀ 0.8.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
have_v4l=no
 
2
 
 
3
case "$host" in
 
4
  *-*-linux*)
 
5
    kdetvv4l_compile=yes
 
6
        have_v4l=yes
 
7
  ;;
 
8
  *) kdetvv4l_compile=no;;
 
9
esac
 
10
 
 
11
AC_MSG_CHECKING(if kdetv v4l plugin should be compiled)
 
12
AC_MSG_RESULT($kdetvv4l_compile)
 
13
 
 
14
if test "$kdetvv4l_compile" = "yes"; then
 
15
  AC_DEFINE(HAVE_V4L, 1, [If we have video4linux])
 
16
fi
 
17
 
 
18
AM_CONDITIONAL(include_kdetvvideo, test "$kdetvv4l_compile" = "yes")
 
19