diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-12-30 19:01:26 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-12-30 19:01:26 -0800 |
commit | 836b954387aaca9b39f4a38c85fda92181b1ffdc (patch) | |
tree | 712f801f0939f905181be6ad1eb5416afd14c5b0 | |
parent | d7e81fdf7c006c6cd7c628ff2134777a0133b75e (diff) | |
download | txr-836b954387aaca9b39f4a38c85fda92181b1ffdc.tar.gz txr-836b954387aaca9b39f4a38c85fda92181b1ffdc.tar.bz2 txr-836b954387aaca9b39f4a38c85fda92181b1ffdc.zip |
configure: broken file offset bits detection.
We are not detecting the need to do -D_FILE_OFFSET_BITS=64
correct, resulting in no large file support on 32 bit
platforms based on Glibc. This is a regression since TXR 244.
* configure: We must pass EXTRA_FLAGS=-D$try to
actually try the options we are looping over. This argument
was accidentally removed in commit
3d80caccafc27ac812bbf8226eba6d8e529c63ff
on October 9, 2020, when the conftest_symns command was
changed to conftest_o.
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3416,7 +3416,7 @@ struct sizes { }; ! - if ! conftest_o ; then + if ! conftest_o EXTRA_FLAGS=-D$try ; then printf "failed\n\n" printf "Errors from compilation: \n\n" |