commit 51bef7ad20bee14742b309a85041924b1549786e parent 4cd52a64acd0fe58869dd80693d5750fd4a08e1b Author: Marcel Denia <naoir@gmx.net> Date: Fri, 30 Oct 2015 14:24:06 +0100 perl: Enable crypt() for all libc implementations Signed-off-by: Marcel Denia <naoir@gmx.net> Diffstat:
| M | lang/perl/files/libc.config | | | 6 | ++---- |
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/lang/perl/files/libc.config b/lang/perl/files/libc.config @@ -3,11 +3,9 @@ ldflags="$ldflags -L$owrt:staging_dir/lib" } -# uclibc does not provide crypt_r(). Enable crypt() usage for glibc builds only -($owrt:libc ne 'glibc') { +# uclibc does not provide crypt_r(). +($owrt:libc eq 'uclibc') { crypt_r_proto='0' - i_crypt='undef' - d_crypt='undef' d_crypt_r='undef' }