On Thu, 15 Sep 2005, Uriel Avalos wrote:

> Thank you for the advice. I did go and install SDL. However, it was 
> still giving me trouble. I took a careful look at the configure output 
> and I found that it did not detect linux so it was disabling 
> video4linux. I passed "pentium4-linux-gnu" to configure and that did the 

        That implies that debian sarge did something very strange to either
        gcc or autoconf because video4linux is checked for with this logic
        in configure.ac:

case $host in
  *-*-linux*)
  AC_CHECK_HEADER(linux/videodev.h,
                  [have_video4linux=true
                   AC_DEFINE(HAVE_V4L, 1,
                             [Building for Linux - using the video4linux API])],
                  [AC_MSG_ERROR([videodev.h not found - please install the 
linux kernel headers])])
   ;;
  *)
  AC_MSG_WARN([Did not find linux platform - video4linux functionality will be 
disabled])
   ;;
esac

        If $host doesn't have "-linux" in it or if the kernel header 
        linux/videodev.h is in a different place then the check for video4linux
        will not succeed.

        At the beginning of the ./configure output there should be lines
        which look like this:

checking build system type... i686-suse-linux
checking host system type... i686-suse-linux
checking target system type... i686-suse-linux

        What does your output say?  It might have saved a little time if the
        output from ./configure were attached ;)

> trick. However, when I now run lavrec I get a "libmjpegtoolsutils not 
> found" error.

        Did you did remember to, after installing new shared libraries, run
        "ldconfig"? :)

        Cheers,
        Steven Schultz



-------------------------------------------------------
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
_______________________________________________
Mjpeg-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mjpeg-users

Reply via email to