pwauth
pwauth copied to clipboard
lack into auth_pam.c for mac OS X leopard (pwauth-2.3.11)
steps to reproduce the problem
1. try to compile pwauth-2.3.11 for mac OS X leopard (10.5)
2. configure pwauth for PAM_OLD_OS_X authentication into config.h
3. make clean && make
when linking, le _check_auth symbol is not found by the linker.
solution :
into pam_auth.c,
replace line 36
#if defined(PAM_SOLARIS_26) || defined(PAM_SOLARIS) || defined(PAM_OS_X)
with
#if defined(PAM_SOLARIS_26) || defined(PAM_SOLARIS) || defined(PAM_OS_X) ||
defined(PAM_OLD_OS_X)
Best regards,
Patrice Fontaine
Original issue reported on code.google.com by [email protected] on 15 Jun 2014 at 9:29