Module Name: src
Committed By: matt
Date: Tue Feb 1 01:15:51 UTC 2011
Modified Files:
src/sys/rump: Makefile.rump
Log Message:
Define COMPAT_50 to be 1 just like config(8) would be opt_compat_netbsd.h
To generate a diff of this commit:
cvs rdiff -u -r1.59 -r1.60 src/sys/rump/Makefile.rump
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/rump/Makefile.rump
diff -u src/sys/rump/Makefile.rump:1.59 src/sys/rump/Makefile.rump:1.60
--- src/sys/rump/Makefile.rump:1.59 Thu Jan 6 11:22:54 2011
+++ src/sys/rump/Makefile.rump Tue Feb 1 01:15:51 2011
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.rump,v 1.59 2011/01/06 11:22:54 pooka Exp $
+# $NetBSD: Makefile.rump,v 1.60 2011/02/01 01:15:51 matt Exp $
#
WARNS?= 3 # XXX: src/sys won't compile with -Wsign-compare yet
@@ -20,7 +20,7 @@
CPPFLAGS+= -D_KERNEL -DMULTIPROCESSOR -D_MODULE -DMODULAR
CPPFLAGS+= -DMAXUSERS=32
CPPFLAGS+= -DDIAGNOSTIC
-CPPFLAGS+= -DCOMPAT_50
+CPPFLAGS+= -DCOMPAT_50=1
CPPFLAGS+= -DDEBUGPRINT
CPPFLAGS+= -I${.CURDIR} -I.
CPPFLAGS+= -I${RUMPTOP}/../../common/include -isystem ${RUMPTOP}/../arch