Merge DirectFB header check into DirectFB check.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19316 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2006-08-04 13:23:14 +00:00
parent 79f3951cef
commit 0289359637
1 changed files with 7 additions and 16 deletions

23
configure vendored
View File

@ -3651,29 +3651,20 @@ else
fi
echores "$_tga"
echocheck "DirectFB headers presence"
for I in /usr/include/directfb /usr/local/include/directfb /usr/include \
/usr/local/include `echo $_inc_extra | sed s/-I//g`; do
if test -f "$I/directfb.h" ; then
_inc_directfb="-I$I"
_res_comment="using $_inc_directfb"
echores "yes"
break
fi
done
if test -z "$_inc_directfb" ; then
_directfb=no
echores "not found"
fi
echocheck "DirectFB"
if test "$_directfb" = auto ; then
_directfb=no
cat > $TMPC <<EOF
if linux && test -c /dev/fb0; then
cat > $TMPC <<EOF
#include <directfb.h>
int main(void) { IDirectFB *foo; DirectFBInit(0,0); return 0; }
EOF
linux && test -c /dev/fb0 && cc_check $_inc_directfb -ldirectfb && _directfb=yes
for _inc_directfb in $_inc_extra -I/usr/local/include/directfb \
-I/usr/include/directfb -I/usr/local/include -I/usr/include; do
cc_check $_inc_directfb -ldirectfb && _directfb=yes && break
done
fi
fi
if test "$_directfb" = yes; then