diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2025-07-03 07:45:14 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2025-07-03 07:45:14 (GMT) |
| commit | 40bc3d16a30a8c2774b9591e631f324e96225902 (patch) | |
| tree | 625abdb92ba8e593b583667d3950c7edf3871a67 /unix/configure | |
| parent | 264e9e9793c226da345b341c28c8050cb33bd7b3 (diff) | |
| download | tcl-40bc3d16a30a8c2774b9591e631f324e96225902.zip tcl-40bc3d16a30a8c2774b9591e631f324e96225902.tar.gz tcl-40bc3d16a30a8c2774b9591e631f324e96225902.tar.bz2 | |
Fix [6b0f776c52]: gcc 14 breaks configure test for bigendian leading to broken floating point
Diffstat (limited to 'unix/configure')
| -rwxr-xr-x | unix/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/configure b/unix/configure index 98fb65e..ad20038 100755 --- a/unix/configure +++ b/unix/configure @@ -10101,7 +10101,7 @@ main () char c[sizeof (long)]; } u; u.l = 1; - exit (u.c[sizeof (long) - 1] == 1); + return (u.c[sizeof (long) - 1] == 1); } _ACEOF rm -f conftest$ac_exeext |
