From owner-svn-ports-head@FreeBSD.ORG Sat Sep 14 03:44:53 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 134859BE; Sat, 14 Sep 2013 03:44:53 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DA1962E4B; Sat, 14 Sep 2013 03:44:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8E3iqfS005907; Sat, 14 Sep 2013 03:44:52 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8E3iqvh005901; Sat, 14 Sep 2013 03:44:52 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201309140344.r8E3iqvh005901@svn.freebsd.org> From: Dmitry Marakasov Date: Sat, 14 Sep 2013 03:44:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r327215 - in head/audio/audiere: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Sep 2013 03:44:53 -0000 Author: amdmi3 Date: Sat Sep 14 03:44:51 2013 New Revision: 327215 URL: http://svnweb.freebsd.org/changeset/ports/327215 Log: Fix build with clang/libc++ Added: head/audio/audiere/files/patch-src-debug.cpp (contents, props changed) head/audio/audiere/files/patch-src-utility.h (contents, props changed) Modified: head/audio/audiere/Makefile Modified: head/audio/audiere/Makefile ============================================================================== --- head/audio/audiere/Makefile Sat Sep 14 03:06:04 2013 (r327214) +++ head/audio/audiere/Makefile Sat Sep 14 03:44:51 2013 (r327215) @@ -26,9 +26,7 @@ PORTDOCS= changelog.txt cvs.txt dependen CONFIGURE_REPLACES='s|wx_config|no_&|' -#OPTIONS_DEFINE= DUMB CDAUDIO VORBIS SPEEX FLAC -#OPTIONS_DEFAULT= DUMB CDAUDIO VORBIS SPEEX FLAC -OPTIONS_DEFINE= DUMB CDAUDIO VORBIS SPEEX +OPTIONS_DEFINE= DUMB CDAUDIO VORBIS SPEEX DOCS OPTIONS_DEFAULT= DUMB CDAUDIO VORBIS SPEEX DUMB_DESC= DUMB support Added: head/audio/audiere/files/patch-src-debug.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/audiere/files/patch-src-debug.cpp Sat Sep 14 03:44:51 2013 (r327215) @@ -0,0 +1,14 @@ +--- src/debug.cpp.orig 2006-02-14 07:57:01.000000000 +0300 ++++ src/debug.cpp 2013-09-14 06:53:30.679226734 +0400 +@@ -1,8 +1,11 @@ + #ifdef WIN32 + #include ++#else ++ #include "unistd.h" + #endif + + #include "debug.h" ++#include + + + namespace audiere { Added: head/audio/audiere/files/patch-src-utility.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/audiere/files/patch-src-utility.h Sat Sep 14 03:44:51 2013 (r327215) @@ -0,0 +1,10 @@ +--- src/utility.h.orig 2006-02-14 07:57:01.000000000 +0300 ++++ src/utility.h 2013-09-12 07:09:46.054424472 +0400 +@@ -10,6 +10,7 @@ + #include + #include + #include ++#include + #include "audiere.h" + #include "types.h" +