changeset 12514:a6acf2b87bd5

Fix X11 libs detection on Cygwin.
author diego
date Mon, 31 May 2004 15:07:20 +0000
parents 3e5704e7b35f
children 7ddeffd0dbda
files configure
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Mon May 31 14:15:35 2004 +0000
+++ b/configure	Mon May 31 15:07:20 2004 +0000
@@ -2994,7 +2994,7 @@
 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;