summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-07-17 11:08:41 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-07-17 11:08:41 +0000
commit9f852fcd187ee8275c424c9bfec9f012fcb4a0d6 (patch)
treef33ddb4de47c11032fab6bab179515b3c8d1da7e /configure
parentcd1f6674cd41ea9c42ccf85ae903948929914982 (diff)
downloadmpv-9f852fcd187ee8275c424c9bfec9f012fcb4a0d6.tar.bz2
mpv-9f852fcd187ee8275c424c9bfec9f012fcb4a0d6.tar.xz
Remove /usr/include from the list of places to check for headers,
default system directories are covered by the empty include path. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23803 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 2b0ad47b1b..9865e23feb 100755
--- a/configure
+++ b/configure
@@ -3685,7 +3685,7 @@ if test "$_directfb" = auto ; then
int main(void) { IDirectFB *foo; DirectFBInit(0,0); return 0; }
EOF
for _inc_tmp in "" -I/usr/local/include/directfb \
- -I/usr/include/directfb -I/usr/local/include -I/usr/include; do
+ -I/usr/include/directfb -I/usr/local/include; do
cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
_inc_extra="$_inc_extra $_inc_tmp" && break
done