Commit f74d2ab5 authored by Christophe Mutricy's avatar Christophe Mutricy

dvb access needs dvbpsi

parent d14bfaa2
...@@ -2204,6 +2204,7 @@ dnl libdvbpsi ts demux/mux ...@@ -2204,6 +2204,7 @@ dnl libdvbpsi ts demux/mux
dnl dnl
AC_ARG_ENABLE(dvbpsi, AC_ARG_ENABLE(dvbpsi,
[ --enable-dvbpsi dvbpsi ts mux and demux module (default enabled)]) [ --enable-dvbpsi dvbpsi ts mux and demux module (default enabled)])
have_dvbpsi=no
if test "${enable_dvbpsi}" != "no" if test "${enable_dvbpsi}" != "no"
then then
AC_ARG_WITH(dvbpsi, AC_ARG_WITH(dvbpsi,
...@@ -2219,7 +2220,8 @@ then ...@@ -2219,7 +2220,8 @@ then
if test "${enable_sout}" != "no"; then if test "${enable_sout}" != "no"; then
VLC_ADD_PLUGIN([mux_ts]) VLC_ADD_PLUGIN([mux_ts])
fi fi
VLC_ADD_LIBS([mux_ts ts dvb],[-ldvbpsi]) ], VLC_ADD_LIBS([mux_ts ts dvb],[-ldvbpsi])
have_dvbpsi=yes],
[ AC_MSG_WARN([cannot find libdvbpsi headers]) ], [ AC_MSG_WARN([cannot find libdvbpsi headers]) ],
[#if defined( HAVE_STDINT_H ) [#if defined( HAVE_STDINT_H )
# include <stdint.h> # include <stdint.h>
...@@ -2249,6 +2251,7 @@ then ...@@ -2249,6 +2251,7 @@ then
fi fi
VLC_ADD_CPPFLAGS([mux_ts ts dvb],[-I${real_dvbpsi_tree}/src]) VLC_ADD_CPPFLAGS([mux_ts ts dvb],[-I${real_dvbpsi_tree}/src])
VLC_ADD_LIBS([mux_ts ts dvb],[${real_dvbpsi_tree}/src/.libs/libdvbpsi.a]) VLC_ADD_LIBS([mux_ts ts dvb],[${real_dvbpsi_tree}/src/.libs/libdvbpsi.a])
have_dvbpsi=yes
else else
dnl The given libdvbpsi wasn't built dnl The given libdvbpsi wasn't built
AC_MSG_RESULT(no) AC_MSG_RESULT(no)
...@@ -2277,7 +2280,7 @@ then ...@@ -2277,7 +2280,7 @@ then
fi fi
VLC_ADD_CPPFLAGS([mux_ts ts dvb],[${CPPFLAGS_test}]) VLC_ADD_CPPFLAGS([mux_ts ts dvb],[${CPPFLAGS_test}])
VLC_ADD_LIBS([mux_ts ts dvb],[${LDFLAGS_test} -ldvbpsi]) VLC_ADD_LIBS([mux_ts ts dvb],[${LDFLAGS_test} -ldvbpsi])
have_dvbpsi=yes
],[ ],[
if test -n "${enable_dvbpsi}" if test -n "${enable_dvbpsi}"
then then
...@@ -2566,17 +2569,21 @@ AC_ARG_ENABLE(dvb, ...@@ -2566,17 +2569,21 @@ AC_ARG_ENABLE(dvb,
if test "${enable_dvb}" != "no" if test "${enable_dvb}" != "no"
then then
AC_ARG_WITH(dvb, AS_IF([test "${have_dvbpsi}" = "yes" ],[
[ --with-dvb=PATH path to a dvb- and v4l2-enabled kernel tree],[],[]) AC_ARG_WITH(dvb,
if test "${with_dvb}" != "no" -a -n "${with_dvb}" [ --with-dvb=PATH path to a dvb- and v4l2-enabled kernel tree],[],[])
then if test "${with_dvb}" != "no" -a -n "${with_dvb}"
VLC_ADD_CFLAGS([dvb],[-I${with_dvb}/include]) then
fi VLC_ADD_CFLAGS([dvb],[-I${with_dvb}/include])
CPPFLAGS="${CPPFLAGS_save} -I${with_dvb}/include" fi
AC_CHECK_HEADERS(linux/dvb/version.h linux/dvb/frontend.h, [ CPPFLAGS="${CPPFLAGS_save} -I${with_dvb}/include"
VLC_ADD_PLUGIN([dvb]) AC_CHECK_HEADERS(linux/dvb/version.h linux/dvb/frontend.h, [
],[AC_MSG_WARN(linux-dvb headers not found, dvb disabled)]) VLC_ADD_PLUGIN([dvb])
CPPFLAGS="${CPPFLAGS_save}" ],[AC_MSG_WARN(linux-dvb headers not found, dvb disabled)])
CPPFLAGS="${CPPFLAGS_save}"
],[
AC_MSG_WARN([the dvb access module requires libdvbpsi])
])
fi fi
dnl dnl
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment