From owner-svn-ports-all@FreeBSD.ORG Sat Mar 1 00:51:38 2014 Return-Path: Delivered-To: svn-ports-all@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 ESMTPS id AC4DFFD4; Sat, 1 Mar 2014 00:51:38 +0000 (UTC) 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 8F0B41C07; Sat, 1 Mar 2014 00:51:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s210pcmM077630; Sat, 1 Mar 2014 00:51:38 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s210pb1j077625; Sat, 1 Mar 2014 00:51:37 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201403010051.s210pb1j077625@svn.freebsd.org> From: Dmitry Marakasov Date: Sat, 1 Mar 2014 00:51:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r346587 - in head/audio/spiralsynthmodular: . 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-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2014 00:51:38 -0000 Author: amdmi3 Date: Sat Mar 1 00:51:37 2014 New Revision: 346587 URL: http://svnweb.freebsd.org/changeset/ports/346587 QAT: https://qat.redports.org/buildarchive/r346587/ Log: - Fix build with clang - Fix patch filenames Added: head/audio/spiralsynthmodular/files/patch-SpiralSound-PluginManager.C - copied unchanged from r346581, head/audio/spiralsynthmodular/files/patch-SpiralSound::PluginManager.C head/audio/spiralsynthmodular/files/patch-SpiralSound-Plugins-LADSPAPlugin-LADSPAInfo.h (contents, props changed) head/audio/spiralsynthmodular/files/patch-SpiralSound-Plugins-OutputPlugin-OutputPlugin.C - copied unchanged from r346581, head/audio/spiralsynthmodular/files/patch-SpiralSound::Plugins::OutputPlugin::OutputPlugin.C Deleted: head/audio/spiralsynthmodular/files/patch-SpiralSound::PluginManager.C head/audio/spiralsynthmodular/files/patch-SpiralSound::Plugins::OutputPlugin::OutputPlugin.C Modified: head/audio/spiralsynthmodular/Makefile Modified: head/audio/spiralsynthmodular/Makefile ============================================================================== --- head/audio/spiralsynthmodular/Makefile Sat Mar 1 00:51:31 2014 (r346586) +++ head/audio/spiralsynthmodular/Makefile Sat Mar 1 00:51:37 2014 (r346587) @@ -24,7 +24,7 @@ CONFIGURE_ENV= FLTK_CONFIG="${FLTK_CONFI LIBS="${LIBS} -L${LOCALBASE}/lib ${PTHREAD_LIBS}" CPPFLAGS+= -I${LOCALBASE}/include -WRKSRC= ${WRKDIR}/spiralmodular-0.2.2 +WRKSRC= ${WRKDIR}/spiralmodular-0.2.2 OPTIONS_DEFINE= OPTIMIZED_CFLAGS Copied: head/audio/spiralsynthmodular/files/patch-SpiralSound-PluginManager.C (from r346581, head/audio/spiralsynthmodular/files/patch-SpiralSound::PluginManager.C) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/spiralsynthmodular/files/patch-SpiralSound-PluginManager.C Sat Mar 1 00:51:37 2014 (r346587, copy of r346581, head/audio/spiralsynthmodular/files/patch-SpiralSound::PluginManager.C) @@ -0,0 +1,29 @@ +--- SpiralSound/PluginManager.C.orig Mon Jan 6 01:17:04 2003 ++++ SpiralSound/PluginManager.C Mon Jan 6 01:17:45 2003 +@@ -48,7 +48,7 @@ + } + + // Link the neccesary functions +- char *error; ++ const char *error; + + NewPlugin->CreateInstance = (SpiralPlugin*(*)()) dlsym(NewPlugin->Handle, "CreateInstance"); + +@@ -89,7 +89,7 @@ + if (IsValid(ID)) + { + dlclose(GetPlugin(ID)->Handle); +- char *error; ++ const char *error; + if ((error = dlerror()) != NULL) + { + SpiralInfo::Alert("Error unlinking plugin: \n"+string(error)); +@@ -103,7 +103,7 @@ + i!=m_PluginVec.end(); i++) + { + dlclose((*i)->Handle); +- char *error; ++ const char *error; + if ((error = dlerror()) != NULL) + { + SpiralInfo::Alert("Error unlinking plugin: \n"+string(error)); Added: head/audio/spiralsynthmodular/files/patch-SpiralSound-Plugins-LADSPAPlugin-LADSPAInfo.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/spiralsynthmodular/files/patch-SpiralSound-Plugins-LADSPAPlugin-LADSPAInfo.h Sat Mar 1 00:51:37 2014 (r346587) @@ -0,0 +1,11 @@ +--- SpiralSound/Plugins/LADSPAPlugin/LADSPAInfo.h.orig 2014-02-13 05:56:16.387137838 +0400 ++++ SpiralSound/Plugins/LADSPAPlugin/LADSPAInfo.h 2014-02-13 05:57:44.261183646 +0400 +@@ -91,7 +91,7 @@ + unsigned long UniqueID; + std::string Name; + +- bool operator<(const PluginEntry& pe) ++ bool operator<(const PluginEntry& pe) const + { + return (Name ++#define lrintf(flt) ((int) (flt)) + + #include + #include +@@ -27,7 +28,7 @@ + #include + #include + #if defined (__FreeBSD__) +- #include ++ #include + #else + #if defined (__NetBSD__) || defined (__OpenBSD__) + #include /* OSS emulation */