diff options
author | kensmith <kensmith@FreeBSD.org> | 2005-07-08 14:53:45 +0000 |
---|---|---|
committer | kensmith <kensmith@FreeBSD.org> | 2005-07-08 14:53:45 +0000 |
commit | 174219188d69012cf91722dd67c4e482a8711dec (patch) | |
tree | 6ddceec3ee4fde47d08084a13762b2e822130b74 /lib | |
parent | 763d8c7644cc99d1f81c13947a6a7705e4ce8f19 (diff) | |
download | FreeBSD-src-174219188d69012cf91722dd67c4e482a8711dec.zip FreeBSD-src-174219188d69012cf91722dd67c4e482a8711dec.tar.gz |
Missed one piece of the cluster's quirk. Need to override WARNS because
if _FREEFALL_CONFIG is set gcc bails since pam_sm_setcred() in pam_krb5.c
no longer uses any of its parameters.
Pointy hat: kensmith
Approved by: re (scottl)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libpam/modules/pam_krb5/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libpam/modules/pam_krb5/Makefile b/lib/libpam/modules/pam_krb5/Makefile index 8d33284..a90236c 100644 --- a/lib/libpam/modules/pam_krb5/Makefile +++ b/lib/libpam/modules/pam_krb5/Makefile @@ -29,6 +29,7 @@ SRCS= pam_krb5.c MAN= pam_krb5.8 .if defined(_FREEFALL_CONFIG) CFLAGS+=-D_FREEFALL_CONFIG +WARNS= 0 .endif DPADD= ${LIBKRB5} ${LIBASN1} ${LIBROKEN} ${LIBCOM_ERR} ${LIBCRYPT} ${LIBCRYPTO} |