.libs/pam_rhosts.o: In function pam_sm_authenticate:
pam_rhosts.c:(.text+0x1e4): undefined reference to ruserok'
While compiling Linux-PAM-1.1.8 for arm64. I get this error.
ruserok is defined under a Macro check
#ifdef __UCLIBC__
...
...
...
int ruserok(const char *rhost, int superuser, const char *ruser,
const char *luser)
{
*/ruserok defined here*/
}
...
...
#endif
But i am not building with Uclibc but with musl
What can i do now?