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 | a8f1937c031816442fc988a43e8d2f7de4724299 (patch) | |
tree | 712f801f0939f905181be6ad1eb5416afd14c5b0 | |
parent | 2429b819a66b40858fd412c4101218d987bc2636 (diff) | |
download | txr-a8f1937c031816442fc988a43e8d2f7de4724299.tar.gz txr-a8f1937c031816442fc988a43e8d2f7de4724299.tar.bz2 txr-a8f1937c031816442fc988a43e8d2f7de4724299.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
30ce19ab9e58fe885241bfcdbe3ae20ee2a8e1e1
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" |