From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 3 00:10:07 2009 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 592891065670 for ; Tue, 3 Feb 2009 00:10:07 +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 46DC28FC0C for ; Tue, 3 Feb 2009 00:10:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n130A7u3088877 for ; Tue, 3 Feb 2009 00:10:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n130A7NW088876; Tue, 3 Feb 2009 00:10:07 GMT (envelope-from gnats) Date: Tue, 3 Feb 2009 00:10:07 GMT Message-Id: <200902030010.n130A7NW088876@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Henrik Friedrichsen Cc: Subject: Re: ports/131204: audio/musicpd: fix aac decoding X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Henrik Friedrichsen List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Feb 2009 00:10:07 -0000 The following reply was made to PR ports/131204; it has been noted by GNATS. From: Henrik Friedrichsen To: bug-followup@FreeBSD.org, hrkfdn@gmail.com Cc: Subject: Re: ports/131204: audio/musicpd: fix aac decoding Date: Tue, 3 Feb 2009 01:01:14 +0100 Ok, ignore the previous patch. This one will ultimately fix the mp4 playback, if the audio/faad patch I just submitted will be applied along with it. (http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/131322) --- mpd-fix-check.diff begins here --- diff -Naur ./Makefile ../musicpd/Makefile --- ./Makefile 2009-02-03 00:16:21.000000000 +0100 +++ ../musicpd/Makefile 2009-02-03 00:58:00.000000000 +0100 @@ -7,6 +7,7 @@ PORTNAME= musicpd PORTVERSION= 0.14.1 +PORTREVISION= 1 CATEGORIES= audio ipv6 MASTER_SITES= SF MASTER_SITE_SUBDIR= ${PORTNAME} diff -Naur ./files/patch-configure ../musicpd/files/patch-configure --- ./files/patch-configure 1970-01-01 01:00:00.000000000 +0100 +++ ../musicpd/files/patch-configure 2009-02-03 00:14:45.000000000 +0100 @@ -0,0 +1,11 @@ +--- _configure 2009-02-03 00:14:25.000000000 +0100 ++++ configure 2009-02-03 00:14:07.000000000 +0100 +@@ -9937,7 +9937,7 @@ + + int main() { + unsigned char channels; +- uint32_t sample_rate; ++ unsigned long sample_rate; + + faacDecInit2(NULL, NULL, 0, &sample_rate, &channels); + return 0; --- mpd-fix-check.diff ends here ---