GNOME Bugzilla – Bug 484629
[pam] Doesn't link against libpam
Last modified: 2007-10-09 15:39:21 UTC
Hi, currently the pam module doesn't link against libpam. This isn't a problem normally, as everybody using that module must link against libpam anyway but not exactly beautiful either: ldd -r /lib/security/pam_gnome_keyring.so undefined symbol: pam_getenv (/lib/security/pam_gnome_keyring.so) undefined symbol: pam_set_data (/lib/security/pam_gnome_keyring.so) undefined symbol: pam_putenv (/lib/security/pam_gnome_keyring.so) undefined symbol: pam_get_item (/lib/security/pam_gnome_keyring.so) undefined symbol: pam_strerror (/lib/security/pam_gnome_keyring.so) undefined symbol: pam_set_item (/lib/security/pam_gnome_keyring.so) undefined symbol: pam_get_user (/lib/security/pam_gnome_keyring.so) undefined symbol: pam_get_data (/lib/security/pam_gnome_keyring.so) linux-gate.so.1 => (0xffffe000) libc.so.6 => /lib/tls/i686/cmov/libc.so.6 (0xb7e53000) /lib/ld-linux.so.2 (0x80000000) Ok to commit the trivial attached patch?
Created attachment 96863 [details] [review] g-k-pam.diff
Created attachment 96864 [details] [review] g-k-pam-configure.diff Might also make sense to add this to configure.ac then
Thanks committed: 2007-10-09 Stef Walter <stef@memberwebs.com> * configure.in: * pam/Makefile.am: Link pam module with libpam. Patch by Sebastian Dröge. Fixes bug #484629