8e8728c45c
with MKPIC=no, possibly because the target does not support shared libraries, these include libraries required to resolve all symbols which end up referenced from PAM-using applications. The libraries presently required are -lcrypt, -lrpcsvc and -lutil. Add use of these variables which are currently set up to use PAM, so that they compile when MKPIC=no. Also, in the telnetd case, reorder the order of the libraries, so that libtelnet.a comes before -ltermcap and -lutil, again to fix link error when MKPIC=no. Discussed with thorpej and christos.
45 lines
943 B
Makefile
45 lines
943 B
Makefile
# $NetBSD: Makefile,v 1.40 2005/03/04 20:41:09 he Exp $
|
|
# from: @(#)Makefile 8.3 (Berkeley) 4/2/94
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= passwd
|
|
SRCS= local_passwd.c passwd.c
|
|
MAN= passwd.1
|
|
|
|
CPPFLAGS+=-I${.CURDIR} -DLOGIN_CAP
|
|
|
|
.if (${USE_YP} != "no")
|
|
SRCS+= yp_passwd.c
|
|
CPPFLAGS+=-DYP
|
|
DPADD+= ${LIBRPCSVC}
|
|
LDADD+= -lrpcsvc
|
|
LINKS+= ${BINDIR}/passwd ${BINDIR}/yppasswd
|
|
MAN+= yppasswd.1
|
|
.endif
|
|
|
|
DPADD+= ${LIBCRYPT} ${LIBUTIL}
|
|
LDADD+= -lcrypt -lutil
|
|
|
|
BINOWN= root
|
|
BINMODE=4555
|
|
|
|
.if (${USE_KERBEROS} != "no")
|
|
CPPFLAGS+= -DKERBEROS5 -I${DESTDIR}/usr/include/krb5
|
|
SRCS+= krb5_passwd.c
|
|
|
|
DPADD+= ${LIBKRB5} ${LIBCRYPTO} ${LIBASN1} ${LIBCOM_ERR} ${LIBROKEN} ${LIBCRYPT}
|
|
LDADD+= -lkrb5 -lcrypto -lasn1 -lcom_err -lroken -lcrypt
|
|
LINKS+= ${BINDIR}/passwd ${BINDIR}/kpasswd
|
|
MAN+= kpasswd.1
|
|
.endif
|
|
|
|
.if (${USE_PAM} != "no")
|
|
CPPFLAGS+=-DUSE_PAM
|
|
SRCS+= pam_passwd.c
|
|
LDADD+=-lpam ${PAM_STATIC_LDADD}
|
|
DPADD+=${LIBPAM} ${PAM_STATIC_DPADD}
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|