From owner-freebsd-multimedia@FreeBSD.ORG Mon Apr 12 15:25:15 2010 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A7E9D1065670; Mon, 12 Apr 2010 15:25:15 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from smtp.timeweb.ru (smtp.timeweb.ru [92.53.116.15]) by mx1.freebsd.org (Postfix) with ESMTP id 646E48FC0A; Mon, 12 Apr 2010 15:25:15 +0000 (UTC) Received: from [213.148.20.85] (helo=hive.panopticon) by smtp.timeweb.ru with esmtpsa (TLSv1:CAMELLIA256-SHA:256) (Exim 4.71) (envelope-from ) id 1O1LVh-0004lq-DE; Mon, 12 Apr 2010 19:25:13 +0400 Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id ED04AB860; Mon, 12 Apr 2010 19:25:12 +0400 (MSD) Received: by hades.panopticon (Postfix, from userid 1000) id DB0E2B829; Mon, 12 Apr 2010 19:25:12 +0400 (MSD) To: FreeBSD-gnats-submit@freebsd.org From: Dmitry Marakasov X-send-pr-version: 3.113 X-GNATS-Notify: Message-Id: <20100412152512.DB0E2B829@hades.panopticon> Date: Mon, 12 Apr 2010 19:25:12 +0400 (MSD) Cc: multimedia@FreeBSD.org Subject: [PATCH] audio/libsndfile: fix pedantic bug X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2010 15:25:15 -0000 >Submitter-Id: current-users >Originator: Dmitry Marakasov >Organization: >Confidential: no >Synopsis: [PATCH] audio/libsndfile: fix pedantic bug >Severity: non-critical >Priority: low >Category: ports >Class: change-request >Release: FreeBSD 8.0-RELEASE i386 >Environment: System: FreeBSD hades.panopticon 8.0-RELEASE FreeBSD 8.0-RELEASE #0: Tue Nov 24 22:31:59 MSK 2009 >Description: - Fix style bug, which prevents building projects that #include libsndfile header build -pedantic, namely devel/sfml (http://pointyhat.freebsd.org/errorlogs/sparc64-errorlogs/e.8.20100411175117/sfml-1.5_4.log) Added file(s): - files/patch-src-sndfile.h.in Port maintainer (multimedia@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- libsndfile-1.0.21_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/amdmi3/projects/freebsd/FreeBSD.cvs/ports/audio/libsndfile/Makefile,v retrieving revision 1.46 diff -u -u -r1.46 Makefile --- Makefile 10 Apr 2010 13:28:52 -0000 1.46 +++ Makefile 12 Apr 2010 15:20:42 -0000 @@ -7,6 +7,7 @@ PORTNAME= libsndfile PORTVERSION= 1.0.21 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= http://www.mega-nerd.com/libsndfile/files/ Index: files/patch-src-sndfile.h.in =================================================================== RCS file: files/patch-src-sndfile.h.in diff -N files/patch-src-sndfile.h.in --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src-sndfile.h.in 12 Apr 2010 15:20:55 -0000 @@ -0,0 +1,11 @@ +--- src/sndfile.h.in.orig 2009-12-10 21:49:31.000000000 +0300 ++++ src/sndfile.h.in 2010-04-11 15:10:53.000000000 +0400 +@@ -294,7 +294,7 @@ + SF_CHANNEL_MAP_AMBISONIC_B_Y, + SF_CHANNEL_MAP_AMBISONIC_B_Z, + +- SF_CHANNEL_MAP_MAX, ++ SF_CHANNEL_MAP_MAX + } ; + + --- libsndfile-1.0.21_1.patch ends here ---