Mercurial > mplayer.hg
comparison configure @ 12514:a6acf2b87bd5
Fix X11 libs detection on Cygwin.
author | diego |
---|---|
date | Mon, 31 May 2004 15:07:20 +0000 |
parents | a6c9198b538d |
children | ad8852dcb3fe |
comparison
equal
deleted
inserted
replaced
12513:3e5704e7b35f | 12514:a6acf2b87bd5 |
---|---|
2992 | 2992 |
2993 | 2993 |
2994 echocheck "X11 libs presence" | 2994 echocheck "X11 libs presence" |
2995 if test -z "$_ld_x11" ; then | 2995 if test -z "$_ld_x11" ; then |
2996 for I in /usr/X11R6/lib /usr/lib/X11R6 /usr/X11/lib /usr/lib32 /usr/openwin/lib /usr/X11R6/lib64 ; do | 2996 for I in /usr/X11R6/lib /usr/lib/X11R6 /usr/X11/lib /usr/lib32 /usr/openwin/lib /usr/X11R6/lib64 ; do |
2997 if test -d "$I" && ( test -f "$I/libX11.so" || test -f "$I/libX11.a" ) ; then | 2997 if test -d "$I" && ( test -f "$I/libX11.so" || test -f "$I/libX11.a" || test -f "$I/libX11.dll.a" ) ; then |
2998 _ld_x11="-L$I" | 2998 _ld_x11="-L$I" |
2999 echores "yes (using $I)" | 2999 echores "yes (using $I)" |
3000 break; | 3000 break; |
3001 fi | 3001 fi |
3002 done | 3002 done |