diff options
author | Siddhesh Poyarekar <siddhesh@sourceware.org> | 2023-07-17 12:44:17 -0400 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2023-07-20 20:38:13 +0200 |
commit | 6c85c5a1773d786ccdc375e34431488fbcdd88e0 (patch) | |
tree | 92262669e775c2498c1f50dc544d8a43c98940e5 /configure | |
parent | 3edca7f545d226bfbf553e676e22cbfec14adfe8 (diff) | |
download | glibc-6c85c5a1773d786ccdc375e34431488fbcdd88e0.zip glibc-6c85c5a1773d786ccdc375e34431488fbcdd88e0.tar.gz glibc-6c85c5a1773d786ccdc375e34431488fbcdd88e0.tar.bz2 |
configure: Disable building libcrypt by default
We mentioned eventual dropping of libcrypt in the 2.28 NEWS. Actually
put that plan in motion by first disabling building libcrypt by default.
note in NEWS that the library will be dropped completely in a future
release.
Also add a couple of builds into build-many-glibcs.py.
Signed-off-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
Reviewed-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1484,7 +1484,7 @@ Optional Features: architectures --enable-memory-tagging enable memory tagging if supported by the architecture [default=no] - --disable-crypt do not build nor install the passphrase hashing + --enable-crypt build and install the legacy passphrase hashing library, libcrypt --enable-nss-crypt enable libcrypt to use nss --enable-systemtap enable systemtap static probe points [default=no] @@ -4577,7 +4577,7 @@ if test ${enable_crypt+y} then : enableval=$enable_crypt; build_crypt=$enableval else $as_nop - build_crypt=yes + build_crypt=no fi |