From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Apr 27 12:40:20 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org 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 ECBBF16A40B for ; Thu, 27 Apr 2006 12:40:19 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 348CF43D4C for ; Thu, 27 Apr 2006 12:40:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k3RCeJg5049457 for ; Thu, 27 Apr 2006 12:40:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k3RCeIv2049456; Thu, 27 Apr 2006 12:40:18 GMT (envelope-from gnats) Resent-Date: Thu, 27 Apr 2006 12:40:18 GMT Resent-Message-Id: <200604271240.k3RCeIv2049456@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Andriy Gapon Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F069B16A402 for ; Thu, 27 Apr 2006 12:35:09 +0000 (UTC) (envelope-from avg@topspin.kiev.ua) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 203E943D5F for ; Thu, 27 Apr 2006 12:35:07 +0000 (GMT) (envelope-from avg@topspin.kiev.ua) Received: from oddity.topspin.kiev.ua (oddity-e.topspin.kiev.ua [212.40.38.87]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id PAA16139 for ; Thu, 27 Apr 2006 15:35:04 +0300 (EEST) (envelope-from avg@topspin.kiev.ua) Received: from oddity.topspin.kiev.ua (localhost [127.0.0.1]) by oddity.topspin.kiev.ua (8.13.3/8.13.1) with ESMTP id k3RCZ4Sk034194 for ; Thu, 27 Apr 2006 15:35:04 +0300 (EEST) (envelope-from avg@oddity.topspin.kiev.ua) Received: (from avg@localhost) by oddity.topspin.kiev.ua (8.13.3/8.13.1/Submit) id k3RCZ3qP034193; Thu, 27 Apr 2006 15:35:03 +0300 (EEST) (envelope-from avg) Message-Id: <200604271235.k3RCZ3qP034193@oddity.topspin.kiev.ua> Date: Thu, 27 Apr 2006 15:35:03 +0300 (EEST) From: Andriy Gapon To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/96411: [maintainer-update] games/oolite fails to build on 4.X because of missing stdint.h header X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Apr 2006 12:40:20 -0000 >Number: 96411 >Category: ports >Synopsis: [maintainer-update] games/oolite fails to build on 4.X because of missing stdint.h header >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Apr 27 12:40:18 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Andriy Gapon >Release: FreeBSD 5.4-RELEASE-p3 i386 >Organization: >Environment: System: FreeBSD 4.X oolite-1.62.5 >Description: Thanks to Kris Kennaway for reporting and diagnosting this problem. oolite source includes , but 4.X is not POSIX-compliant in regard to this header - it is not present. using on all versions of FreeBSD should correct this problem, because inttypes.h actually declares a superset of stdint.h declarations. please add the attached patch to files/ sub-directory of this port. P.S. incluing stdint.h versus inttypes.h conditionally, based on __FreeBSD_version, does not make any sense because sys/param.h which defines __FreeBSD_version is a superset of both mentioned headers. >How-To-Repeat: try to build this port on supported 4.X system (e.g. 4.11) >Fix: please add the attached patch to files/ sub-directory of this port. --- stdint.patch begins here --- --- OOCocoa.h.orig Thu Apr 27 14:16:30 2006 +++ OOCocoa.h Thu Apr 27 15:14:04 2006 @@ -1,7 +1,7 @@ // Import OpenStep main headers and define some Macisms and other compatibility stuff. #if defined(GNUSTEP) && !defined(OOLITE_SDL_MAC) -#include +#include #define Boolean unsigned char #define Byte unsigned char #define true 1 --- stdint.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: