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 /scripts | |
parent | 3edca7f545d226bfbf553e676e22cbfec14adfe8 (diff) | |
download | glibc-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 'scripts')
-rwxr-xr-x | scripts/build-many-glibcs.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index e4eaec01e3..73ffc57c86 100755 --- a/scripts/build-many-glibcs.py +++ b/scripts/build-many-glibcs.py @@ -431,7 +431,9 @@ class Context(object): {'variant': 'disable-multi-arch', 'arch': 'sparcv9', 'ccopts': '-m32 -mlong-double-128 -mcpu=v9', - 'cfg': ['--disable-multi-arch']}]) + 'cfg': ['--disable-multi-arch']}, + {'variant': 'enable-crypt', + 'cfg': ['--enable-crypt']}]) self.add_config(arch='x86_64', os_name='linux-gnu', gcc_cfg=['--with-multilib-list=m64,m32,mx32'], @@ -466,7 +468,9 @@ class Context(object): {'arch': 'i586', 'ccopts': '-m32 -march=i586'}, {'variant': 'enable-fortify-source', - 'cfg': ['--enable-fortify-source']}]) + 'cfg': ['--enable-fortify-source']}, + {'variant': 'enable-crypt', + 'cfg': ['--enable-crypt']}]) self.add_config(arch='x86_64', os_name='gnu', gcc_cfg=['--disable-multilib']) |