From owner-svn-src-stable-7@FreeBSD.ORG Tue Jun 2 22:01:47 2009 Return-Path: Delivered-To: svn-src-stable-7@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6647410656A8; Tue, 2 Jun 2009 22:01:47 +0000 (UTC) (envelope-from peter@wemm.org) Received: from yw-out-2324.google.com (yw-out-2324.google.com [74.125.46.30]) by mx1.freebsd.org (Postfix) with ESMTP id E35818FC08; Tue, 2 Jun 2009 22:01:46 +0000 (UTC) (envelope-from peter@wemm.org) Received: by yw-out-2324.google.com with SMTP id 9so4501003ywe.13 for ; Tue, 02 Jun 2009 15:01:46 -0700 (PDT) MIME-Version: 1.0 Received: by 10.100.251.6 with SMTP id y6mr331382anh.44.1243978794236; Tue, 02 Jun 2009 14:39:54 -0700 (PDT) In-Reply-To: <20090602120608.GA98052@zibbi.meraka.csir.co.za> References: <200906012209.n51M9gTU094161@svn.freebsd.org> <20090602120608.GA98052@zibbi.meraka.csir.co.za> Date: Tue, 2 Jun 2009 14:39:54 -0700 Message-ID: From: Peter Wemm To: John Hay Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: svn-src-stable@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, svn-src-stable-7@freebsd.org Subject: Re: svn2cvs down? was: svn commit: r193282 - stable/7/sys/libkern X-BeenThere: svn-src-stable-7@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for only the 7-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Jun 2009 22:01:48 -0000 On Tue, Jun 2, 2009 at 5:06 AM, John Hay wrote: > Hi Guys, > > Is there something wrong with the svn to cvs gateway? At least this > commit has not pitched on the cvs side. Who should one contact about > it? > > John > -- > John Hay -- John.Hay@meraka.csir.co.za / jhay@FreeBSD.org > > On Mon, Jun 01, 2009 at 10:09:42PM +0000, Kip Macy wrote: >> Author: kmacy >> Date: Mon Jun =A01 22:09:42 2009 >> New Revision: 193282 >> URL: http://svn.freebsd.org/changeset/base/193282 >> >> Log: >> =A0 memmove is defined in support.S on arm - don't compile in >> >> Modified: >> =A0 stable/7/sys/libkern/memmove.c >> >> Modified: stable/7/sys/libkern/memmove.c >> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D >> --- stable/7/sys/libkern/memmove.c =A0 =A0Mon Jun =A01 22:05:08 2009 =A0= =A0 =A0 =A0(r193281) >> +++ stable/7/sys/libkern/memmove.c =A0 =A0Mon Jun =A01 22:09:42 2009 =A0= =A0 =A0 =A0(r193282) >> @@ -29,6 +29,7 @@ __FBSDID("$FreeBSD$"); >> >> =A0#include >> >> +#if !defined(__arm__) >> =A0void * >> =A0memmove(void *dest, const void *src, size_t n) >> =A0{ >> @@ -36,3 +37,4 @@ memmove(void *dest, const void *src, siz >> =A0 =A0 =A0 bcopy(src, dest, n); >> =A0 =A0 =A0 return (dest); >> =A0} >> +#endif > > It should be fixed now. I fixed another problem with a previously-missed revision as well. --=20 Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com; KI6FJV "All of this is for nothing if we don't go to the stars" - JMS/B5 "If Java had true garbage collection, most programs would delete themselves upon execution." -- Robert Sewell