about summary refs log tree commit diff
path: root/configure.ac
diff options
context:
space:
mode:
authorSiddhesh Poyarekar <siddhesh@sourceware.org>2023-07-17 12:44:17 -0400
committerAndreas K. Hüttel <dilfridge@gentoo.org>2023-07-20 20:38:13 +0200
commit6c85c5a1773d786ccdc375e34431488fbcdd88e0 (patch)
tree92262669e775c2498c1f50dc544d8a43c98940e5 /configure.ac
parent3edca7f545d226bfbf553e676e22cbfec14adfe8 (diff)
downloadglibc-6c85c5a1773d786ccdc375e34431488fbcdd88e0.tar.gz
glibc-6c85c5a1773d786ccdc375e34431488fbcdd88e0.tar.xz
glibc-6c85c5a1773d786ccdc375e34431488fbcdd88e0.zip
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.ac')
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 09553541fb..f508a3722b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -316,10 +316,10 @@ fi
 AC_SUBST(memory_tagging)
 
 AC_ARG_ENABLE([crypt],
-              AS_HELP_STRING([--disable-crypt],
-                             [do not build nor install the passphrase hashing library, libcrypt]),
+              AS_HELP_STRING([--enable-crypt],
+                             [build and install the legacy passphrase hashing library, libcrypt]),
               [build_crypt=$enableval],
-              [build_crypt=yes])
+              [build_crypt=no])
 AC_SUBST(build_crypt)
 
 AC_ARG_ENABLE([nss-crypt],