From: Paul Eggert Date: Mon, 20 May 2024 17:12:56 +0000 (-0700) Subject: Sync m4/byteswap.m4 from Gnulib X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=662f8c6d5c74834d0010d858c7afc50a351810dd;p=emacs.git Sync m4/byteswap.m4 from Gnulib * m4/byteswap.m4: Copy from Gnulib. This fixes a configure glitch on macOS reported by Mattias EngdegÄrd (cherry picked from commit 642fd607b83c56847914a8a46d6c297a74529610) --- diff --git a/m4/byteswap.m4 b/m4/byteswap.m4 index 3f5ef45cfe6..e91da97b958 100644 --- a/m4/byteswap.m4 +++ b/m4/byteswap.m4 @@ -1,5 +1,5 @@ # byteswap.m4 -# serial 6 +# serial 7 dnl Copyright (C) 2005, 2007, 2009-2024 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -15,6 +15,10 @@ AC_DEFUN([gl_BYTESWAP], AC_CACHE_CHECK([for working bswap_16, bswap_32, bswap_64], [gl_cv_header_working_byteswap_h], [gl_cv_header_working_byteswap_h=no + dnl Check that floating point arguments work. + dnl This also checks C libraries with implementations like + dnl '#define bswap_16(x) (((x) >> 8 & 0xff) | (((x) & 0xff) << 8))' + dnl that mistakenly evaluate their arguments multiple times. AC_COMPILE_IFELSE( [AC_LANG_PROGRAM( [[#include @@ -29,7 +33,7 @@ AC_DEFUN([gl_BYTESWAP], [gl_cv_header_working_byteswap_h=no]) ]) fi - if test $gl_cv_header_working_byteswap_h = yes; then + if test "$gl_cv_header_working_byteswap_h" = yes; then GL_GENERATE_BYTESWAP_H=false else GL_GENERATE_BYTESWAP_H=true