From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Apr 12 12:40:05 2008 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 134861065671 for ; Sat, 12 Apr 2008 12:40:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0EF408FC12 for ; Sat, 12 Apr 2008 12:40:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m3CCe4IU004674 for ; Sat, 12 Apr 2008 12:40:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m3CCe4SX004673; Sat, 12 Apr 2008 12:40:04 GMT (envelope-from gnats) Date: Sat, 12 Apr 2008 12:40:04 GMT Message-Id: <200804121240.m3CCe4SX004673@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Shuichi KITAGUCHI Cc: Subject: Re: ports/122688: mercurial does not work on 8.0-CURRENT X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Shuichi KITAGUCHI List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Apr 2008 12:40:05 -0000 The following reply was made to PR ports/122688; it has been noted by GNATS. From: Shuichi KITAGUCHI To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/122688: mercurial does not work on 8.0-CURRENT Date: Sat, 12 Apr 2008 21:01:22 +0900 (JST) ----Next_Part(Sat_Apr_12_21_01_22_2008_860)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit prior patch is incorrect. this patch is *also* workaround but works "hg init/add/commit". ----Next_Part(Sat_Apr_12_21_01_22_2008_860)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Description: patch-mercurial_osutil.c.txt Content-Disposition: inline; filename="patch-mercurial_osutil.c.txt" --- mercurial/osutil.c.orig 2008-03-25 08:05:20.000000000 +0900 +++ mercurial/osutil.c 2008-04-12 20:49:10.000000000 +0900 @@ -16,6 +16,10 @@ #include #include +#ifdef __FreeBSD__ +#undef AT_SYMLINK_NOFOLLOW +#endif + struct listdir_stat { PyObject_HEAD struct stat st; ----Next_Part(Sat_Apr_12_21_01_22_2008_860)----