-lminixutil link fixes

. not available and not needed for clang
This commit is contained in:
Ben Gras 2012-02-03 14:03:59 +01:00
parent 65f97ea344
commit cc1ae59c9b
2 changed files with 7 additions and 2 deletions

View file

@ -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=

View file

@ -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=