-lminixutil link fixes
. not available and not needed for clang
This commit is contained in:
parent
65f97ea344
commit
cc1ae59c9b
2 changed files with 7 additions and 2 deletions
|
@ -5,7 +5,10 @@ SRCS= main.c random.c rijndael_api.c rijndael_alg.c
|
|||
.PATH: ${.CURDIR}/aes
|
||||
|
||||
DPADD+= ${LIBCHARDRIVER} ${LIBSYS} ${LIBMINIXUTIL}
|
||||
LDADD+= -lchardriver -lsys -lminixutil
|
||||
LDADD+= -lchardriver -lsys
|
||||
.if ${COMPILER_TYPE} != "gnu"
|
||||
LDADD+= -lminixutil
|
||||
.endif
|
||||
|
||||
MAN=
|
||||
|
||||
|
|
|
@ -13,10 +13,12 @@ SRCS= buf.c clock.c inet.c inet_config.c \
|
|||
.PATH: ${.CURDIR}/generic
|
||||
|
||||
DPADD+= ${LIBCHARDRIVER} ${LIBSYS} ${LIBMINIXUTIL}
|
||||
LDADD+= -lchardriver -lsys -lminixutil
|
||||
LDADD+= -lchardriver -lsys
|
||||
|
||||
.if ${COMPILER_TYPE} == "gnu"
|
||||
LDADD+= -lc
|
||||
.else
|
||||
LDADD+= -lminixutil
|
||||
.endif
|
||||
|
||||
MAN=
|
||||
|
|
Loading…
Reference in a new issue