build: Sync to libtool from libgpg-error for 64-bit Windows.

* build-aux/ltmain.hs: Update from libgpg-error.

--

GnuPG-bug-id: 6484
Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
This commit is contained in:
NIIBE Yutaka 2023-05-16 10:52:51 +09:00
parent d44a473e27
commit e622e36f1f
No known key found for this signature in database
GPG Key ID: 640114AF89DE6054

View File

@ -6766,6 +6766,11 @@ func_mode_link ()
elif test -n "$soname_spec"; then elif test -n "$soname_spec"; then
# bleh windows # bleh windows
case $host in case $host in
x86_64-*mingw32*)
func_arith $current - $age
major=$func_arith_result
versuffix="6-$major"
;;
*cygwin* | mingw* | *cegcc*) *cygwin* | mingw* | *cegcc*)
func_arith $current - $age func_arith $current - $age
major=$func_arith_result major=$func_arith_result
@ -7499,6 +7504,14 @@ func_mode_link ()
func_arith $current - $age func_arith $current - $age
major=$func_arith_result major=$func_arith_result
versuffix="-$major" versuffix="-$major"
case $host in
x86_64-*mingw32*)
versuffix="6-$major"
;;
*)
versuffix="-$major"
;;
esac
;; ;;
*) *)