From owner-freebsd-ports-bugs Mon Feb 10 17:43:12 2003 Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 931C637B401 for ; Mon, 10 Feb 2003 17:43:09 -0800 (PST) Received: from out009.verizon.net (out009pub.verizon.net [206.46.170.131]) by mx1.FreeBSD.org (Postfix) with ESMTP id D9AAE43FE3 for ; Mon, 10 Feb 2003 17:43:08 -0800 (PST) (envelope-from arlankfo@verizon.net) Received: from verizon.net ([138.88.138.135]) by out009.verizon.net (InterMail vM.5.01.05.20 201-253-122-126-120-20021101) with ESMTP id <20030211014308.VXRX13941.out009.verizon.net@verizon.net> for ; Mon, 10 Feb 2003 19:43:08 -0600 To: ports-bugs@freebsd.org Subject: ***PATCH**** for timidity From: "Andrew Lankford" Reply-To: "Andrew Lankford" Date: Mon, 10 Feb 2003 20:43:34 -0500 Message-Id: <20030211014308.VXRX13941.out009.verizon.net@verizon.net> Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Here's hoping someone will read this message so that I won't have to leave this to languish in GNATS. Saving the following patch to /usr/ports/timidity/files/patch-r0_2i appears to fix timidity: (thank you!) --- common.c 2003/02/08 01:42:31 1.1 +++ common.c 2003/02/08 01:53:36 @@ -24,7 +24,7 @@ #include #include -#if defined(SOLARIS) || defined(__WIN32__) +#if defined(SOLARIS) || defined(__WIN32__) || defined(__FreeBSD__) #include #else #include --- instrum.c 2003/02/08 01:42:31 1.1 +++ instrum.c 2003/02/08 01:53:50 @@ -25,7 +25,7 @@ #include -#if defined(SOLARIS) || defined(__WIN32__) +#if defined(SOLARIS) || defined(__WIN32__) || defined(__FreeBSD__) #include #else #include --- playmidi.c 2003/02/08 01:42:31 1.1 +++ playmidi.c 2003/02/08 01:54:18 @@ -27,7 +27,7 @@ #endif #include -#if defined(SOLARIS) || defined(__WIN32__) +#if defined(SOLARIS) || defined(__WIN32__) || defined(__FreeBSD__) # include #else #include --- raw_a.c 2003/02/08 01:42:31 1.1 +++ raw_a.c 2003/02/08 01:54:38 @@ -35,6 +35,7 @@ #ifdef __FreeBSD__ #include +#include #endif #include "config.h" --- readmidi.c 2003/02/08 01:42:31 1.1 +++ readmidi.c 2003/02/08 01:53:19 @@ -23,7 +23,7 @@ #include #include -#if defined(SOLARIS) | defined(__WIN32__) +#if defined(SOLARIS) || defined(__WIN32__) || defined(__FreeBSD__) # include #else #include --- timidity.c 2003/02/08 01:42:31 1.1 +++ timidity.c 2003/02/08 01:54:51 @@ -21,7 +21,7 @@ #include #include -#if defined(SOLARIS) || defined(__WIN32__) +#if defined(SOLARIS) || defined(__WIN32__) || defined(__FreeBSD__) #include #else #include --- wav2pat.c 2003/02/08 01:42:31 1.1 +++ wav2pat.c 2003/02/08 01:55:29 @@ -28,7 +28,7 @@ #include #include -#ifdef SOLARIS +#if defined(SOLARIS) || defined(__FreeBSD__) #include #else #include --- wave_a.c 2003/02/08 01:42:31 1.1 +++ wave_a.c 2003/02/08 01:55:45 @@ -35,6 +35,7 @@ #ifdef __FreeBSD__ #include +#include #endif #include "config.h" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message