diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-07-06 20:49:23 +0000 |
---|---|---|
committer | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-07-06 20:49:23 +0000 |
commit | 310a0bc8199f23736e73ed12646a19c354317c23 (patch) | |
tree | 67f97fc2a3d6b67eb280e5ec81d8f1138bc04fe3 /libmpdemux | |
parent | 74a303a3afbe946ca436515759d57ca32681c618 (diff) | |
download | mpv-310a0bc8199f23736e73ed12646a19c354317c23.tar.bz2 mpv-310a0bc8199f23736e73ed12646a19c354317c23.tar.xz |
Fix for case when both V4L and V4L2 are enabled
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18929 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux')
-rw-r--r-- | libmpdemux/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpdemux/Makefile b/libmpdemux/Makefile index e4cbfffc2c..02b2203b7a 100644 --- a/libmpdemux/Makefile +++ b/libmpdemux/Makefile @@ -78,7 +78,7 @@ SRCS += tv.c frequencies.c tvi_dummy.c ifeq ($(TV_V4L),yes) SRCS += tvi_v4l.c audio_in.c endif - ifeq ($(TV_V4L)$(TV_V4L2),yes) + ifneq ($(TV_V4L)$(TV_V4L2),) ifeq ($(ALSA1X),yes) SRCS += ai_alsa1x.c endif |