summaryrefslogtreecommitdiffstats
path: root/src/auto
diff options
context:
space:
mode:
authorKelvin Lee <kiyolee@gmail.com>2022-04-04 17:20:01 +0100
committerBram Moolenaar <Bram@vim.org>2022-04-04 17:20:01 +0100
commitb471690fad5f40f74aca488b13669641fb2b9de1 (patch)
tree798a6e73aa2dc40e44e357d2a736639731809a3e /src/auto
parent188639d75c363dffaf813e8e2209f7350ad1e871 (diff)
patch 8.2.4686: configure doesn't find the Motif library with Cygwinv8.2.4686
Problem: Configure doesn't find the Motif library with Cygwin. Solution: Check for libXm.dll.a. (Kelvin Lee, closes #10077)
Diffstat (limited to 'src/auto')
-rwxr-xr-xsrc/auto/configure4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/auto/configure b/src/auto/configure
index a5497d8f78..8ed46c85f4 100755
--- a/src/auto/configure
+++ b/src/auto/configure
@@ -10212,12 +10212,12 @@ $as_echo "no" >&6; }
GUI_LIB_LOC="`echo $GUI_LIB_LOC|sed 's%-L%%g'`"
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for location of Motif GUI libs" >&5
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for location of Motif GUI libs" >&5
$as_echo_n "checking for location of Motif GUI libs... " >&6; }
gui_libs="`echo $x_libraries|sed 's%/^/^/*$%%'` `echo "$gui_XXX" | sed s/XXX/lib/g` /usr/lib/i386-linux-gnu /usr/lib/x86_64-linux-gnu `echo "$GUI_INC_LOC" | sed s/include/lib/` $GUI_LIB_LOC"
GUI_LIB_LOC=
for try in $gui_libs; do
- for libtry in "$try"/libXm.a "$try"/libXm.so* "$try"/libXm.sl "$try"/libXm.dylib; do
+ for libtry in "$try"/libXm.a "$try"/libXm.dll.a "$try"/libXm.so* "$try"/libXm.sl "$try"/libXm.dylib; do
if test -f "$libtry"; then
GUI_LIB_LOC=$try
fi