summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2022-09-15 16:45:07 -0400
committerGlenn Strauss <gstrauss@gluelogic.com>2022-09-15 16:50:32 -0400
commit47df989c6dd73952141d909dfe0e39aaeba99ec3 (patch)
tree4626cf495adecc341ba5ce9f89bfd74233cd0f17 /configure.ac
parent73df7b643b8734383047675669de45660a983a7b (diff)
downloadlighttpd-git-47df989c6dd73952141d909dfe0e39aaeba99ec3.tar.gz
[autoconf] force large file support (#3171)
force large file support; ignore --disable-lfs (already forced in lighttpd meson, CMake, and Scons builds) x-ref: "File upload regression with --disable-lfs" https://redmine.lighttpd.net/issues/3171
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 4ecaec82..dd38b731 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1527,7 +1527,8 @@ AC_ARG_ENABLE([lfs],
[
case "${enableval}" in
yes) ENABLE_LFS=yes ;;
- no) ENABLE_LFS=no ;;
+ no) ENABLE_LFS=yes
+ AC_MSG_NOTICE([large file support forced; --disable-lfs ignored]) ;;
*) AC_MSG_ERROR([bad value ${enableval} for --enable-lfs]) ;;
esac
],