From owner-cvs-src-old@FreeBSD.ORG Thu Sep 10 08:33:51 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 727DD1065676 for ; Thu, 10 Sep 2009 08:33:51 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 602C18FC1F for ; Thu, 10 Sep 2009 08:33:51 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n8A8Xpej095411 for ; Thu, 10 Sep 2009 08:33:51 GMT (envelope-from des@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n8A8Xp2X095410 for cvs-src-old@freebsd.org; Thu, 10 Sep 2009 08:33:51 GMT (envelope-from des@repoman.freebsd.org) Message-Id: <200909100833.n8A8Xp2X095410@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to des@repoman.freebsd.org using -f From: Dag-Erling Smorgrav Date: Thu, 10 Sep 2009 08:33:28 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/compat/freebsd32 freebsd32_proto.h src/sys/sys sysproto.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Sep 2009 08:33:51 -0000 des 2009-09-10 08:33:28 UTC FreeBSD src repository Modified files: sys/compat/freebsd32 freebsd32_proto.h sys/sys sysproto.h Log: SVN rev 197057 on 2009-09-10 08:33:28Z by des If a certain feature that was present in FreeBSD 7 was removed or changed in FreeBSD 8, the compatibility shims should be built not just when FreeBSD 7 compatibility is requested, but also when compatibility with any older FreeBSD version where that feature was present is requested.o Without this patch, a kernel config that sets COMPAT_FREEBSD6 but not *7 would fail to build due to inconsistencies between the declaration of the compatibility shims and their use in the SysV code. There are similar errors in other *proto.h headers in the tree. MFC after: 3 weeks Revision Changes Path 1.107 +6 -4 src/sys/compat/freebsd32/freebsd32_proto.h 1.238 +12 -4 src/sys/sys/sysproto.h