diff options
author | Chris Packham <judge.packham@gmail.com> | 2023-08-21 20:59:52 +1200 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2023-08-25 18:13:06 +1200 |
commit | 9473e7a481c2a1ca57ec8ddc6d7fe1ac1378347b (patch) | |
tree | 4f4c5814e10d9de0378e575c619a2476b058366e /scripts | |
parent | 981043dc883a944f4492df0b30c20e29b53a56e9 (diff) | |
download | crosstool-ng-9473e7a481c2a1ca57ec8ddc6d7fe1ac1378347b.tar.gz crosstool-ng-9473e7a481c2a1ca57ec8ddc6d7fe1ac1378347b.tar.bz2 crosstool-ng-9473e7a481c2a1ca57ec8ddc6d7fe1ac1378347b.zip |
glibc: Add option for building libcrypt
As of glibc-2.38 libcrypt is not built by default. Add an option to
allow building libcrypt support into glibc.
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/build/libc/glibc.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/build/libc/glibc.sh b/scripts/build/libc/glibc.sh index e400b219..280eb124 100644 --- a/scripts/build/libc/glibc.sh +++ b/scripts/build/libc/glibc.sh @@ -66,6 +66,10 @@ glibc_backend_once() extra_config+=( --enable-obsolete-rpc ) fi + if [ "${CT_GLIBC_ENABLE_OBSOLETE_LIBCRYPT}" = "y" ]; then + extra_config+=( --enable-crypt ) + fi + # Add some default glibc config options if not given by user. # We don't need to be conditional on whether the user did set different # values, as they CT_GLIBC_EXTRA_CONFIG_ARRAY is passed after |