From 511a02c9c2d579011c7985940b6078de01f969da Mon Sep 17 00:00:00 2001 From: Herbert Xu Date: Wed, 26 May 2021 13:49:39 +0800 Subject: Call CHECK_DECL on stat64 On macOS it is possible to find stat64 at link-time but not at compile-time. To make the build process more robust we should check for the header file as well as the library. Reported-by: Saagar Jha Signed-off-by: Herbert Xu --- bin/dash/configure.ac | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'bin/dash') diff --git a/bin/dash/configure.ac b/bin/dash/configure.ac index dc96b748..a395536b 100644 --- a/bin/dash/configure.ac +++ b/bin/dash/configure.ac @@ -140,11 +140,12 @@ if test "$ac_cv_func_signal" != yes; then fi dnl Check for stat64 (dietlibc/klibc). -AC_CHECK_FUNC(stat64,, [ +AC_CHECK_DECL(stat64, AC_CHECK_FUNC(stat64)) +if test "$ac_cv_func_stat64" != yes; then AC_DEFINE(fstat64, fstat, [64-bit operations are the same as 32-bit]) AC_DEFINE(lstat64, lstat, [64-bit operations are the same as 32-bit]) AC_DEFINE(stat64, stat, [64-bit operations are the same as 32-bit]) -]) +fi dnl OS X apparently has stat64 but not open64. AC_CHECK_FUNC(open64,, [ -- cgit 1.4.1 1f7e3824815d27d376d1a8&follow=1'>commit diff
Commit message (Expand)Author
2018-09-11Remove GAMES from BINSJune McEnroe
2018-09-11Rewrite bin.7 and render to plaintext READMEJune McEnroe
2018-09-11Add "blank" lines to man pagesJune McEnroe
2018-09-10Add mdoc syntax fileJune McEnroe
2018-09-08Fix Nm usage in multi-name man pagesJune McEnroe
2018-09-08Put real dates on man pagesJune McEnroe
2018-09-08Replace gfx README with REAMDE.7June McEnroe
2018-09-08Link gfx man pages in ~/.localJune McEnroe