summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-05-31 15:07:20 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-05-31 15:07:20 +0000
commitf208bcf69458d4a59b469b9d1c3d88e9acb0fd8b (patch)
treeb408d28fe32842ebe17ba93d3e25c506d5f2cb39 /configure
parente242b847d8b12f166eec5e64dae0c5b2539e485a (diff)
downloadmpv-f208bcf69458d4a59b469b9d1c3d88e9acb0fd8b.tar.bz2
mpv-f208bcf69458d4a59b469b9d1c3d88e9acb0fd8b.tar.xz
Fix X11 libs detection on Cygwin.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12515 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 9aff282934..07b6a6d727 100755
--- a/configure
+++ b/configure
@@ -2994,7 +2994,7 @@ fi
echocheck "X11 libs presence"
if test -z "$_ld_x11" ; then
for I in /usr/X11R6/lib /usr/lib/X11R6 /usr/X11/lib /usr/lib32 /usr/openwin/lib /usr/X11R6/lib64 ; do
- if test -d "$I" && ( test -f "$I/libX11.so" || test -f "$I/libX11.a" ) ; then
+ if test -d "$I" && ( test -f "$I/libX11.so" || test -f "$I/libX11.a" || test -f "$I/libX11.dll.a" ) ; then
_ld_x11="-L$I"
echores "yes (using $I)"
break;