Tue May 25 16:50:49 2021 UTC ()
PR port-xen/53130 was fixed and closed some time ago, so now we can
belatedly re-enable inclusion of the compat_60 x86 microcode code in
the loadable module.  (It was already being included in the built-in
version of the module.)


(pgoyette)
diff -r1.65 -r1.66 src/sys/compat/common/Makefile

cvs diff -r1.65 -r1.66 src/sys/compat/common/Attic/Makefile (expand / switch to unified diff)

--- src/sys/compat/common/Attic/Makefile 2019/01/27 02:08:39 1.65
+++ src/sys/compat/common/Attic/Makefile 2021/05/25 16:50:49 1.66
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile,v 1.65 2019/01/27 02:08:39 pgoyette Exp $ 1# $NetBSD: Makefile,v 1.66 2021/05/25 16:50:49 pgoyette Exp $
2 2
3LIB= compat 3LIB= compat
4NOPIC= # defined 4NOPIC= # defined
5LLIBS= # defined 5LLIBS= # defined
6 6
7CPPFLAGS= ${COMPATCPPFLAGS} ${SKIP_AUTODEP::=} 7CPPFLAGS= ${COMPATCPPFLAGS} ${SKIP_AUTODEP::=}
8 8
9.PATH.c: ${COMPATDIR} 9.PATH.c: ${COMPATDIR}
10 10
11# Common compatibility code, used by all emulations 11# Common compatibility code, used by all emulations
12SRCS= compat_exec.c 12SRCS= compat_exec.c
13 13
14# Include compatibility code common to libcompat and the compat module 14# Include compatibility code common to libcompat and the compat module
@@ -17,21 +17,19 @@ SRCS= compat_exec.c @@ -17,21 +17,19 @@ SRCS= compat_exec.c
17.include "Makefile.sysv" 17.include "Makefile.sysv"
18 18
19# only needed during build 19# only needed during build
20libinstall:: 20libinstall::
21 21
22.include <bsd.own.mk> 22.include <bsd.own.mk>
23.undef DESTDIR 23.undef DESTDIR
24.include <bsd.lib.mk> 24.include <bsd.lib.mk>
25 25
26lib${LIB}.o:: ${OBJS:O} __buildstdlib 26lib${LIB}.o:: ${OBJS:O} __buildstdlib
27 27
28lib${LIB}.po:: ${POBJS:O} __buildproflib 28lib${LIB}.po:: ${POBJS:O} __buildproflib
29 29
30.if NOTYET 
31.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64" 30.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64"
32CPPFLAGS+= -DCPU_UCODE 31CPPFLAGS+= -DCPU_UCODE
33.endif 32.endif
34.endif 
35 33
36showsources: ${SRCS} 34showsources: ${SRCS}
37 @echo ${.ALLSRC} 35 @echo ${.ALLSRC}