With apoligies to Greg Shapiro, fix the world. The previous commit

lost -lutil and -lwrap by replacing $LDADD and $DPADD rather than
appending to them with +=.
This commit is contained in:
Peter Wemm 2000-10-11 12:19:42 +00:00
parent de2e7393d6
commit 0a69c17a48
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=66977
2 changed files with 4 additions and 4 deletions

View File

@ -41,8 +41,8 @@ LIBSMUTILDIR!= cd ${.CURDIR}/../../lib/libsmutil; make -V .OBJDIR
.endif
LIBSMUTIL:= ${LIBSMUTILDIR}/libsmutil.a
DPADD= ${LIBSMUTIL}
LDADD= ${LIBSMUTIL}
DPADD+= ${LIBSMUTIL}
LDADD+= ${LIBSMUTIL}
.if !defined(NOCRYPT) && !defined(NO_OPENSSL)
# STARTTLS support

View File

@ -41,8 +41,8 @@ LIBSMUTILDIR!= cd ${.CURDIR}/../../lib/libsmutil; make -V .OBJDIR
.endif
LIBSMUTIL:= ${LIBSMUTILDIR}/libsmutil.a
DPADD= ${LIBSMUTIL}
LDADD= ${LIBSMUTIL}
DPADD+= ${LIBSMUTIL}
LDADD+= ${LIBSMUTIL}
.if !defined(NOCRYPT) && !defined(NO_OPENSSL)
# STARTTLS support