Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 89852 | Differences between
and this patch

Collapse All | Expand All

(-)xc/config/cf/FreeBSD.cf (+4 lines)
Lines 529-534 Link Here
529
#define PamLibraries		-lpam DlLibrary
529
#define PamLibraries		-lpam DlLibrary
530
#endif
530
#endif
531
531
532
#ifndef PamMiscLibraries
533
#define PamMiscLibraries
534
#endif
535
532
#ifndef SharedLibXdmGreet
536
#ifndef SharedLibXdmGreet
533
# define SharedLibXdmGreet		NO
537
# define SharedLibXdmGreet		NO
534
#endif
538
#endif
(-)xc/programs/Xserver/os/utils.c (+7 lines)
Lines 2193-2199 Link Here
2193
2193
2194
#ifdef USE_PAM
2194
#ifdef USE_PAM
2195
#include <security/pam_appl.h>
2195
#include <security/pam_appl.h>
2196
#ifdef LINUX_PAM
2196
#include <security/pam_misc.h>
2197
#include <security/pam_misc.h>
2198
#endif
2199
#ifdef _OPENPAM
2200
#include <security/pam_types.h>
2201
#endif
2197
#include <pwd.h>
2202
#include <pwd.h>
2198
#endif /* USE_PAM */
2203
#endif /* USE_PAM */
2199
2204
Lines 2202-2208 Link Here
2202
{
2207
{
2203
#ifdef USE_PAM
2208
#ifdef USE_PAM
2204
    static struct pam_conv conv = {
2209
    static struct pam_conv conv = {
2210
#ifdef PAM_LINUX
2205
	misc_conv,
2211
	misc_conv,
2212
#endif
2206
	NULL
2213
	NULL
2207
    };
2214
    };
2208
2215

Return to bug 89852