We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Even after #31 is merged, make shows some implicit functions are used:
make
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -Ishadow -DHAVE_GETSPENT -DHAVE_FGETSPENT -DHAVE_SETSPENT -DHAVE_ENDSPENT -DHAVE_LCKPWDF -DHAVE_ULCKPWDF -DHAVE_SGETSPENT -DHAVE_RUBY_IO_H -fPIC -DRUBY19 -m64 -o shadow.o -c shadow/shadow.c shadow/shadow.c: In function 'convert_pw_struct': shadow/shadow.c:37:23: warning: implicit declaration of function 'rb_tainted_str_new2'; did you mean 'rb_enc_str_new'? [-Wimplicit-function-declaration] 37 | rb_tainted_str_new2(entry->sp_namp), | ^~~~~~~~~~~~~~~~~~~ | rb_enc_str_new
So make seems to finish without "error", however generated shadow.so is actually broken.
This is due to ruby/ruby@39bc5de , taintedness was already announced to be removed with ruby3.2.
Note that ruby3.2 is expected to be released on 2022-Dec-25.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Even after #31 is merged,
make
shows some implicit functions are used:So make seems to finish without "error", however generated shadow.so is actually broken.
This is due to ruby/ruby@39bc5de , taintedness was already announced to be removed with ruby3.2.
Note that ruby3.2 is expected to be released on 2022-Dec-25.
The text was updated successfully, but these errors were encountered: