Skip to content

Commit

Permalink
disable DV-support if libiec61883 or libraw1394 are missing
Browse files Browse the repository at this point in the history
it's disabled anyhow by the Makefile, but configure shouldn't *say* that
it is supported if it is not...

Closes: #38
  • Loading branch information
umlaeute committed Aug 20, 2014
1 parent 17b6e50 commit 74b5091
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion configure.ac
Expand Up @@ -671,11 +671,15 @@ if test "x$have_ieee1394" = "x"; then
else
have_ieee1394="yes (${have_ieee1394# })"
fi

if test "x${have_v4l}" = "x"; then have_v4l="no"; fi
if test "x${have_v4l2}" = "x"; then have_v4l2="no"; fi
if test "x${have_ieee1394}" = "x"; then have_ieee1394="no"; fi
if test "x${have_libdv}" = "x"; then have_libdv="no"; fi
if test "x${have_libdv}" != "xno"; then
if test "x${have_libiec61883}" != "xyes"; then have_libdv="no (missing libiec61883)"; fi
if test "x${have_libraw1394}" != "xyes"; then have_libdv="no (missing libraw1394)"; fi
fi

if test "x${have_unicap}" = "x"; then have_unicap="no"; fi
if test "x${have_vfw32}" = "x"; then have_vfw32="no"; fi
# TODO: have_ds
Expand Down

0 comments on commit 74b5091

Please sign in to comment.