diff options
author | markm <markm@FreeBSD.org> | 2001-07-09 17:46:24 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2001-07-09 17:46:24 +0000 |
commit | 3b3e6201e7f71b617087cadf40ad1f638ba77d1f (patch) | |
tree | 477fe2b2a756a2b0c8048bc2becc1e93d8a56984 /libexec/ftpd/Makefile | |
parent | 1c3a14b4014991f063e1c18ff82727fd89591c3b (diff) | |
download | FreeBSD-src-3b3e6201e7f71b617087cadf40ad1f638ba77d1f.zip FreeBSD-src-3b3e6201e7f71b617087cadf40ad1f638ba77d1f.tar.gz |
Remove S/Key. PAM can do its job. Well, not quite - there is an issue
with the conversation function and challenges which needs to be
revisited, so in the interim a hack is introduced to provide
an OPIE challenge (which is random if OPIE does not apply)
at all non-anonymnous logins.
Diffstat (limited to 'libexec/ftpd/Makefile')
-rw-r--r-- | libexec/ftpd/Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/libexec/ftpd/Makefile b/libexec/ftpd/Makefile index 6d81aee..4d1f301 100644 --- a/libexec/ftpd/Makefile +++ b/libexec/ftpd/Makefile @@ -3,15 +3,19 @@ PROG= ftpd MAN= ftpd.8 -SRCS= ftpd.c ftpcmd.y logwtmp.c popen.c skey-stuff.c +SRCS= ftpd.c ftpcmd.y logwtmp.c popen.c -CFLAGS+=-DSETPROCTITLE -DSKEY -DLOGIN_CAP -DVIRTUAL_HOSTING -Wall +CFLAGS+=-DSETPROCTITLE -DLOGIN_CAP -DVIRTUAL_HOSTING -Wall CFLAGS+=-DINET6 CFLAGS+=-I${.CURDIR} YFLAGS= -LDADD= -lskey -lmd -lcrypt -lutil -DPADD= ${LIBSKEY} ${LIBMD} ${LIBCRYPT} ${LIBUTIL} +LDADD= -lmd -lcrypt -lutil +DPADD= ${LIBMD} ${LIBCRYPT} ${LIBUTIL} + +# XXX Kluge! Conversation mechanism needs to be fixed. +LDADD+= -lopie +DPADD+= ${LIBOPIE} LSDIR= ../../bin/ls .PATH: ${.CURDIR}/${LSDIR} |