libtool-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: libtool: add mingw to systems not requiring libm


From: Ileana Dumitrescu
Subject: branch master updated: libtool: add mingw to systems not requiring libm
Date: Wed, 17 Jan 2024 13:47:32 -0500

This is an automated email from the git hooks/post-receive script.

ildumi pushed a commit to branch master
in repository libtool.

The following commit(s) were added to refs/heads/master by this push:
     new 97859bda libtool: add mingw to systems not requiring libm
97859bda is described below

commit 97859bda6accde370e212ba18c2dac49bf1c2cba
Author: Ozkan Sezer <sezeroz@gmail.com>
AuthorDate: Tue Feb 16 11:55:50 2021 +0300

    libtool: add mingw to systems not requiring libm
    
    mingw uses msvcrt as it's standard library and does not use libm.
    So in LT_LIB_M it can be added to the list of systems which do not
    require libm.
    
    * libtool.m4: Add mingw to the list of systems not requiring libm
---
 m4/libtool.m4 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/m4/libtool.m4 b/m4/libtool.m4
index ed572bb3..f2c244f0 100644
--- a/m4/libtool.m4
+++ b/m4/libtool.m4
@@ -3854,7 +3854,7 @@ AC_DEFUN([LT_LIB_M],
 [AC_REQUIRE([AC_CANONICAL_HOST])dnl
 LIBM=
 case $host in
-*-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*)
+*-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-mingw* | *-*-pw32* | 
*-*-darwin*)
   # These system don't have libm, or don't need it
   ;;
 *-ncr-sysv4.3*)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]