# HG changeset patch # User diego # Date 1206582997 0 # Node ID 5ae0c6ec14e988c3a874b3866ad44ad4beebb844 # Parent 84e71e0a054651a990e6a0899fcd6212c59a037e Remove bsd() system check. Lumping different *BSD systems together like that was not a good idea in the first place. They are too different and constantly diverging. diff -r 84e71e0a0546 -r 5ae0c6ec14e9 configure --- a/configure Wed Mar 26 09:58:37 2008 +0000 +++ b/configure Thu Mar 27 01:56:37 2008 +0000 @@ -107,7 +107,6 @@ netbsd() { issystem "NetBSD" ; return "$?" ; } bsdos() { issystem "BSD/OS" ; return "$?" ; } openbsd() { issystem "OpenBSD" ; return "$?" ; } -bsd() { freebsd || netbsd || bsdos || openbsd ; return "$?" ; } qnx() { issystem "QNX" ; return "$?" ; } darwin() { issystem "Darwin" ; return "$?" ; } gnu() { issystem "GNU" ; return "$?" ; } @@ -6812,7 +6811,7 @@ echores "$_tv" -if bsd; then +if freebsd || netbsd || openbsd || bsdos ; then echocheck "*BSD BT848 bt8xx header" _ioctl_bt848_h=no for file in "machine/ioctl_bt848.h" \ @@ -6900,7 +6899,7 @@ _noinputmodules="tv-bsdbt848 $_noinputmodules" fi echores "$_tv_bsdbt848" -fi #if bsd +fi #if freebsd || netbsd || openbsd || bsdos echocheck "DirectShow TV interface" @@ -7061,7 +7060,8 @@ fi echores "$_radio_v4l" -if bsd && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then +if freebsd || netbsd || openbsd || bsdos \ + && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then echocheck "*BSD BrookTree 848 Radio interface" _radio_bsdbt848=no cat > $TMPC <