Date: Tue, 16 Oct 2018 18:48:00 +0000 (UTC) From: Thomas Zander <riggs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r482238 - in head/audio/musicpd: . files Message-ID: <201810161848.w9GIm01m068598@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: riggs Date: Tue Oct 16 18:47:59 2018 New Revision: 482238 URL: https://svnweb.freebsd.org/changeset/ports/482238 Log: Fix SIGABRT in IsFileNotFound (e.g. when creating an empty database) While on it: - Add USES=gnome due to complaint in check-sanity PR: 232030 Reported by: korsani@free.fr MFH: 2018Q4 Added: head/audio/musicpd/files/patch-src_input_Error.hxx (contents, props changed) Modified: head/audio/musicpd/Makefile Modified: head/audio/musicpd/Makefile ============================================================================== --- head/audio/musicpd/Makefile Tue Oct 16 17:37:56 2018 (r482237) +++ head/audio/musicpd/Makefile Tue Oct 16 18:47:59 2018 (r482238) @@ -2,7 +2,7 @@ PORTNAME= musicpd PORTVERSION= 0.20.21 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio ipv6 MASTER_SITES= http://www.musicpd.org/download/mpd/${PORTVERSION:R}/ DISTNAME= mpd-${PORTVERSION} @@ -18,7 +18,7 @@ BROKEN_powerpc64= Does not build on powerpc64 LIB_DEPENDS= libboost_iostreams.so:devel/boost-libs \ libicudata.so:devel/icu -USES= compiler:c++14-lang gmake pkgconfig tar:xz +USES= compiler:c++14-lang gmake gnome pkgconfig tar:xz GNU_CONFIGURE= yes USE_GNOME= glib20 Added: head/audio/musicpd/files/patch-src_input_Error.hxx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/musicpd/files/patch-src_input_Error.hxx Tue Oct 16 18:47:59 2018 (r482238) @@ -0,0 +1,10 @@ +--- src/input/Error.hxx.orig 2018-07-06 17:17:27 UTC ++++ src/input/Error.hxx +@@ -30,7 +30,6 @@ + * exist? This function attempts to recognize exceptions thrown by + * various input plugins. + */ +-gcc_pure + bool + IsFileNotFound(std::exception_ptr e); +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810161848.w9GIm01m068598>