From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jun 5 16:20:36 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BCACF16A4CE for ; Sat, 5 Jun 2004 16:20:36 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B5FCD43D46 for ; Sat, 5 Jun 2004 16:20:36 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i55NKPVu091592 for ; Sat, 5 Jun 2004 16:20:25 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i55NKPtP091591; Sat, 5 Jun 2004 16:20:25 -0700 (PDT) (envelope-from gnats) Date: Sat, 5 Jun 2004 16:20:25 -0700 (PDT) Message-Id: <200406052320.i55NKPtP091591@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Sergey Matveychuk Subject: Re: ports/65933: [MAINTAINER] sysutils/grub: fix non-critical bugs in UFS2 patch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Sergey Matveychuk List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Jun 2004 23:20:36 -0000 The following reply was made to PR ports/65933; it has been noted by GNATS. From: Sergey Matveychuk To: freebsd-gnats-submit@FreeBSD.org, Pav Lucistnik Cc: Subject: Re: ports/65933: [MAINTAINER] sysutils/grub: fix non-critical bugs in UFS2 patch Date: Sun, 06 Jun 2004 03:15:33 +0400 This is a multi-part message in MIME format. --------------020409090009040508050403 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Hmm... It's strange. I remember I've fixed it. Apply this patch please. -- Sem. --------------020409090009040508050403 Content-Type: text/plain; name="grub-4_x.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="grub-4_x.patch" diff -ruN grub.orig/files/patch-ufs2 grub/files/patch-ufs2 --- grub.orig/files/patch-ufs2 Sun Jun 6 02:41:51 2004 +++ grub/files/patch-ufs2 Sun Jun 6 03:05:57 2004 @@ -587,12 +587,12 @@ + * __uint* constants already defined in + * FreeBSD's /usr/include/machine/_types.h + */ -+#ifndef _MACHINE__TYPES_H_ ++#if !defined(_MACHINE__TYPES_H_) && !defined(_MACHINE_ANSI_H_) +typedef uint8_t __uint8_t; +typedef uint16_t __uint16_t; +typedef uint32_t __uint32_t; +typedef uint64_t __uint64_t; -+#endif /* _MACHINE__TYPES_H_ */ ++#endif /* !_MACHINE__TYPES_H_ && !_MACHINE_ANSI_H_ */ + +#define i_size di_size + --------------020409090009040508050403--