Page 1 of 1

dvbdriver / error configure dvb

Posted: 12 Mar 2004 10:25
by eugen
Hello,

i am running a debian woddy system on kernel 2.4.24
the dvb card hauppauge nova-s is running wiht xine
and the drivers von http://www.linuxtv.org rel. 1.1.0

when i try to configure vls 0.5.6 with dvb-enable

./configure \
--enable-dvb \


i get the following error message
..........................................
checking for syslog.h... yes
checking dvdread/dvd_reader.h usability... yes
checking dvdread/dvd_reader.h presence... yes
checking for dvdread/dvd_reader.h... yes
checking for dvbdriver headers in ... checking linux/dvb/frontend.h usability... no
checking linux/dvb/frontend.h presence... no
checking for linux/dvb/frontend.h... no
configure: error: Could not find dvbdriver on your system: you may get it from http://www.linuxtv.org/
..................................................
to wich directory should i point
--with-dvb=
--with-libdvb=

what can i do?
do i have do switch do kernel 2.6x?

thanks for any help

.. solved....

Posted: 19 Mar 2004 12:52
by esa007
.... i have found the error in the configure file.

:idea:

----- original --------------------------------------------
# Check whether --with-dvb or --without-dvb was given.
if test "${with_dvb+set}" = set; then
withval="$with_dvb"

fi;
if test "$enable_dvb" = "yes"
then
echo "$as_me:$LINENO: checking for dvbdriver headers in ${with_dvb}" >&5
echo $ECHO_N "checking for dvbdriver headers in ${with_dvb}... $ECHO_C" >&6
if test "x$with_dvb" = x
then
test_CFLAGS=""
else
test_CFLAGS="-I${with_dvb}/include"
fi
save_CPPFLAGS=$CPPFLAGS
CPPFLAGS="$save_CPPFLAGS $test_CFLAGS"

for ac_header in linux/dvb/frontend.h
do
--------------------------------------------------------------------

------------ change ---------------------------------------------
# Check whether --with-dvb or --without-dvb was given.
if test "${with_dvb+set}" = set; then
withval="$with_dvb"

fi;
if test "$enable_dvb" = "yes"
then
echo "$as_me:$LINENO: checking for dvbdriver headers in ${with_dvb}" >&5
echo $ECHO_N "checking for dvbdriver headers in ${with_dvb}... $ECHO_C" >&6
if test "x$with_dvb" = x
then
test_CFLAGS=""
else
test_CFLAGS="-I${with_dvb}/include -I${with_dvb}"
fi
save_CPPFLAGS=$CPPFLAGS
CPPFLAGS="$save_CPPFLAGS $test_CFLAGS"

for ac_header in frontend.h
do
---------------------------------------------------------------------------------

.. and then it works ....



:D