inet: do not link against libc

This should make its printed errors show up again.

Change-Id: I6839a584dc2a544bae7973ded3ab1dacf04e4ec0
This commit is contained in:
David van Moolenbroek 2015-06-06 11:51:39 +00:00
parent dfc3261535
commit 44707c1900
6 changed files with 5 additions and 14 deletions

View File

@ -15,10 +15,6 @@ __RCSID("$NetBSD: bswap64.c,v 1.3 2009/03/16 05:59:21 cegger Exp $");
#undef bswap64
#if defined(__minix) && defined(_STANDALONE)
#undef bswap32
#endif /* defined(__minix) && defined(_STANDALONE) */
uint64_t
bswap64(uint64_t x)
{

View File

@ -57,6 +57,10 @@ __RCSID("$NetBSD: sha2.c,v 1.24 2013/06/09 19:46:56 christos Exp $");
#include "namespace.h"
#include <string.h>
#if defined(__minix) && defined(_LIBMINC)
#include <stdint.h> /* for uintptr_t */
#endif /* defined(__minix) && defined(_LIBMINC) */
#endif
#include <sys/types.h>

View File

@ -108,7 +108,6 @@ CLEANFILES+= ${f:C/\.o/.bc/}
.endif # ${USE_BITCODE:Uno} == "yes"
.endfor
CPPFLAGS.bswap64.c+= -D_STANDALONE
CPPFLAGS.rb.c+= -D_LIBC
.for f in \
@ -123,7 +122,6 @@ CLEANFILES+= ${f:C/\.o/.bc/}
.endif # ${USE_BITCODE:Uno} == "yes"
.endfor
CPPFLAGS.sha2.c+= -D_STANDALONE
CPPFLAGS.sha2.c+= -I${NETBSDSRCDIR}/sys
.for f in \
@ -211,7 +209,7 @@ CPPFLAGS.tolower_.c+= -I${LIBCDIR}/locale
CPPFLAGS.toupper_.c+= -I${LIBCDIR}/locale
.for f in \
waitpid.o read_tsc_64.o fslib.o itoa.o
waitpid.o read_tsc_64.o fslib.o itoa.o oneC_sum.o
${f} ${f:C/\.o/.bc/}: ${LIBMINIXCDIR}/gen/${f:C/\.o/.c/}
OBJS+= ${f}
CLEANFILES+= ${f}

View File

@ -24,8 +24,6 @@ OBJS+= ${f}
CLEANFILES+= ${f}
.endfor
CPPFLAGS.byte_swap_4.S+= -D_STANDALONE
.for f in \
__aeabi_idiv0.o __aeabi_ldiv0.o
${f}: ${LIBCOMMONCARCHDIR}/gen/${f:C/\.o/.c/}

View File

@ -28,8 +28,6 @@ CLEANFILES+= ${f:C/\.o/.bc/}
.endif # ${USE_BITCODE:Uno} == "yes"
.endfor
CPPFLAGS.byte_swap_4.S+= -D_STANDALONE
.for f in \
memchr.o memcmp.o memcpy.o memmove.o memset.o \
strcat.o strchr.o strcmp.o strcpy.o strlen.o \

View File

@ -19,9 +19,6 @@ NOCLANGERROR=yes
DPADD+= ${LIBCHARDRIVER} ${LIBSYS}
LDADD+= -lchardriver -lsys
DPADD+= ${LIBC}
LDADD+= -lc
CPPFLAGS+= -I${.CURDIR} -D'ARGS(a)=a'
.include <minix.service.mk>