mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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:
parent
de2e7393d6
commit
0a69c17a48
2 changed files with 4 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue