Commit 8a4f5973 authored by diego's avatar diego

Add support for GNU/kFreeBSD systems.

patch from Petr Salinger submitted by Sam Hocevar


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5464 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 238df032
......@@ -414,6 +414,15 @@ make="gmake"
CFLAGS="$CFLAGS -pthread"
FFLDFLAGS="$FFLDFLAGS -export-dynamic -pthread"
;;
GNU/kFreeBSD)
v4l="no"
v4l2="no"
bktr="yes"
audio_oss="yes"
dv1394="no"
CFLAGS="$CFLAGS -pthread"
LDFLAGS="$LDFLAGS -rdynamic"
;;
BSD/OS)
v4l="no"
v4l2="no"
......
......@@ -30,6 +30,9 @@
# include <machine/ioctl_meteor.h>
# include <machine/ioctl_bt848.h>
# endif
#elif defined(__FreeBSD_kernel__)
# include <dev/bktr/ioctl_meteor.h>
# include <dev/bktr/ioctl_bt848.h>
#elif defined(__DragonFly__)
# include <dev/video/meteor/ioctl_meteor.h>
# include <dev/video/bktr/ioctl_bt848.h>
......
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