Fixed world breakage when NOSHARED=yes. libmp now depends on libcrypto,

so it must be linked before libcrypto to work right.
This commit is contained in:
Bruce Evans 2001-07-30 14:36:19 +00:00
parent 7e7cdfa09d
commit 4c05509cd0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=80637
2 changed files with 6 additions and 6 deletions

View File

@ -13,10 +13,10 @@ CFLAGS+= -DLINEMODE -DUSE_TERMIO -DDIAGNOSTICS -DOLD_ENVIRON \
SRCS= global.c slc.c state.c sys_term.c telnetd.c \
termstat.c utility.c authenc.c
DPADD= ${LIBUTIL} ${LIBTERMCAP} ${LIBTELNET} ${LIBCRYPTO} \
${LIBCRYPT} ${LIBMP} ${LIBPAM}
LDADD= -lutil -ltermcap ${LIBTELNET} -lcrypto \
-lcrypt -lmp ${MINUSLPAM}
DPADD= ${LIBUTIL} ${LIBTERMCAP} ${LIBTELNET} ${LIBMP} ${LIBCRYPTO} \
${LIBCRYPT} ${LIBPAM}
LDADD= -lutil -ltermcap ${LIBTELNET} -lmp -lcrypto \
-lcrypt ${MINUSLPAM}
.include <bsd.prog.mk>

View File

@ -9,9 +9,9 @@ CFLAGS+= -DIPSEC -DINET6
SRCS= authenc.c commands.c main.c network.c ring.c sys_bsd.c \
telnet.c terminal.c tn3270.c utilities.c
DPADD= ${LIBTERMCAP} ${LIBTELNET} ${LIBCRYPTO} ${LIBCRYPT} ${LIBMP} \
DPADD= ${LIBTERMCAP} ${LIBTELNET} ${LIBMP} ${LIBCRYPTO} ${LIBCRYPT} \
${LIBIPSEC} ${LIBPAM}
LDADD= -ltermcap ${LIBTELNET} -lcrypto -lcrypt -lmp \
LDADD= -ltermcap ${LIBTELNET} -lmp -lcrypto -lcrypt \
-lipsec ${MINUSLPAM}
.include <bsd.prog.mk>