Date: Sun, 21 Jan 2018 20:01:59 +0000 (UTC) From: "Tobias C. Berner" <tcberner@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r459626 - in head/multimedia/k9copy-kde4: . files Message-ID: <201801212001.w0LK1xBL014915@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tcberner Date: Sun Jan 21 20:01:59 2018 New Revision: 459626 URL: https://svnweb.freebsd.org/changeset/ports/459626 Log: multimedia/k9copy-kde4: Fix build on 10.3 * the fix to build with clang6 was not compatible with 10.3 Pointy-hat to: tcberner Reported by: antoine Modified: head/multimedia/k9copy-kde4/Makefile head/multimedia/k9copy-kde4/files/patch-src_core_k9tools.cpp Modified: head/multimedia/k9copy-kde4/Makefile ============================================================================== --- head/multimedia/k9copy-kde4/Makefile Sun Jan 21 19:50:46 2018 (r459625) +++ head/multimedia/k9copy-kde4/Makefile Sun Jan 21 20:01:59 2018 (r459626) @@ -3,7 +3,7 @@ PORTNAME= k9copy PORTVERSION= 2.3.4 -PORTREVISION= 16 +PORTREVISION= 17 CATEGORIES= multimedia kde MASTER_SITES= LOCAL/rakuco DISTNAME= ${PORTNAME}-${PORTVERSION}-Source Modified: head/multimedia/k9copy-kde4/files/patch-src_core_k9tools.cpp ============================================================================== --- head/multimedia/k9copy-kde4/files/patch-src_core_k9tools.cpp Sun Jan 21 19:50:46 2018 (r459625) +++ head/multimedia/k9copy-kde4/files/patch-src_core_k9tools.cpp Sun Jan 21 20:01:59 2018 (r459626) @@ -9,7 +9,7 @@ src/core/k9tools.cpp:59:54: error: no viable conversio return false; #else - bool res= KStandardDirs::findExe( _progName,NULL,false) !=NULL ; -+ bool res= KStandardDirs::findExe( _progName,NULL, KStandardDirs::SearchOption::NoSearchOptions) !=NULL ; ++ bool res= KStandardDirs::findExe( _progName,NULL, KStandardDirs::NoSearchOptions) !=NULL ; if (_msg && !res) k9Dialogs::error(i18n("Error starting program %1").arg(_progName),i18n("Running program")); return res;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201801212001.w0LK1xBL014915>