Module Name: src Committed By: christos Date: Sun Jan 24 16:07:48 UTC 2016
Modified Files: src/lib/libkvm: Makefile Log Message: mips needs _KMEMUSER for label_t in pcb.h To generate a diff of this commit: cvs rdiff -u -r1.50 -r1.51 src/lib/libkvm/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/lib/libkvm/Makefile diff -u src/lib/libkvm/Makefile:1.50 src/lib/libkvm/Makefile:1.51 --- src/lib/libkvm/Makefile:1.50 Sun Aug 10 19:39:08 2014 +++ src/lib/libkvm/Makefile Sun Jan 24 11:07:48 2016 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.50 2014/08/10 23:39:08 matt Exp $ +# $NetBSD: Makefile,v 1.51 2016/01/24 16:07:48 christos Exp $ # from: @(#)Makefile 8.1 (Berkeley) 6/4/93 WARNS= 3 @@ -70,5 +70,9 @@ CLEANFILES+= machine sparc CPPFLAGS+= -I. .endif # } +.if (${MACHINE_ARCH} == "mips") +CPPFLAGS+= -D_KMEMUSER +.endif + .include <bsd.lib.mk>