[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: cross-compilation guesses (8)
From: |
Jim Meyering |
Subject: |
Re: cross-compilation guesses (8) |
Date: |
Wed, 02 May 2012 10:43:12 +0200 |
Bruno Haible wrote:
> When cross-compiling, canonicalize.m4 also guesses wrong:
>
> checking whether realpath works... guessing no
>
> This should fix it. Objections?
This looks fine. Thanks.
> 2012-05-01 Bruno Haible <address@hidden>
>
> canonicalize[-lgpl]: Avoid "guessing no" when cross-compiling to glibc.
> * m4/canonicalize.m4 (gl_FUNC_REALPATH_WORKS): Require
> AC_CANONICAL_HOST.
> When cross-compiling to a glibc system, set gl_cv_func_realpath_works
> to "guessing yes".
>
> --- m4/canonicalize.m4.orig Wed May 2 00:08:57 2012
> +++ m4/canonicalize.m4 Wed May 2 00:08:38 2012
> @@ -1,4 +1,4 @@
> -# canonicalize.m4 serial 23
> +# canonicalize.m4 serial 24
>
> dnl Copyright (C) 2003-2007, 2009-2012 Free Software Foundation, Inc.
>
> @@ -56,6 +56,7 @@
> AC_DEFUN([gl_FUNC_REALPATH_WORKS],
> [
> AC_CHECK_FUNCS_ONCE([realpath])
> + AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
> AC_CACHE_CHECK([whether realpath works], [gl_cv_func_realpath_works], [
> touch conftest.a
> mkdir conftest.d
> @@ -89,13 +90,23 @@
> }
> return result;
> ]])
> - ], [gl_cv_func_realpath_works=yes], [gl_cv_func_realpath_works=no],
> - [gl_cv_func_realpath_works="guessing no"])
> + ],
> + [gl_cv_func_realpath_works=yes],
> + [gl_cv_func_realpath_works=no],
> + [case "$host_os" in
> + # Guess yes on glibc systems.
> + *-gnu*) gl_cv_func_realpath_works="guessing yes" ;;
> + # If we don't know, assume the worst.
> + *) gl_cv_func_realpath_works="guessing no" ;;
> + esac
> + ])
> rm -rf conftest.a conftest.d
> ])
> - if test "$gl_cv_func_realpath_works" = yes; then
> - AC_DEFINE([FUNC_REALPATH_WORKS], [1], [Define to 1 if realpath()
> - can malloc memory, always gives an absolute path, and handles
> - trailing slash correctly.])
> - fi
> + case "$gl_cv_func_realpath_works" in
> + *yes)
> + AC_DEFINE([FUNC_REALPATH_WORKS], [1], [Define to 1 if realpath()
> + can malloc memory, always gives an absolute path, and handles
> + trailing slash correctly.])
> + ;;
> + esac
> ])
- Re: cross-compilation guesses (5), (continued)
cross-compilation guesses (6), Bruno Haible, 2012/05/01
cross-compilation guesses (7), Bruno Haible, 2012/05/01
cross-compilation guesses (8), Bruno Haible, 2012/05/01
- Re: cross-compilation guesses (8),
Jim Meyering <=
cross-compilation guesses (9), Bruno Haible, 2012/05/01
cross-compilation guesses (10), Bruno Haible, 2012/05/01
cross-compilation guesses (11), Bruno Haible, 2012/05/05
cross-compilation guesses (12), Bruno Haible, 2012/05/05
cross-compilation guesses (13), Bruno Haible, 2012/05/05