]> git.ipfire.org Git - thirdparty/squid.git/commit
Fix ./configure --with-filedescriptors=NUMBER (#1217)
authorAlex Rousskov <rousskov@measurement-factory.com>
Sat, 24 Dec 2022 17:00:32 +0000 (17:00 +0000)
committerSquid Anubis <squid-anubis@squid-cache.org>
Mon, 26 Dec 2022 17:05:27 +0000 (17:05 +0000)
commitc881e2b12769d53cc66f0e315f4f00aa18f47867
treeb87f59b93becb6428e33db49bbe5b945ba03c545
parent83afc53d04870edc069581bea1ab699dd7d92088
Fix ./configure --with-filedescriptors=NUMBER (#1217)

Commit a1c2236 forgot to quote AS_CASE argument of AC_ARG_WITH(),
resulting in the following ./configure-time errors:

    error: --with-filedescriptors expects a numeric argument

We now quote AS_CASE argument of AC_ARG_WITH(), as recommended by
Autoconf and for consistency sake. More (hopefully automated) work is
needed to quote all function call arguments (that should be quoted).

Also use m4 quadrigraphs for quoting safety sake and to attract readers
attention to a risky (from writing in m4 point of view) expression. This
particular improvement is not required to fix the bug.

The other two AC_ARG_WITH() are modified for consistency sake but they
were not broken and their compiled versions have not changed.
configure.ac