1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-17 04:15:13 +00:00

Remove test for framebuffer device from DirectFB check.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20229 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2006-10-15 12:33:53 +00:00
parent bf8f553f13
commit 4b1dd57710

2
configure vendored
View File

@ -3714,7 +3714,7 @@ echores "$_tga"
echocheck "DirectFB"
if test "$_directfb" = auto ; then
_directfb=no
if linux && test -c /dev/fb0; then
if linux; then
cat > $TMPC <<EOF
#include <directfb.h>
int main(void) { IDirectFB *foo; DirectFBInit(0,0); return 0; }