From owner-svn-ports-all@freebsd.org Mon Oct 5 19:52:45 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 3D6B642E7A9; Mon, 5 Oct 2020 19:52:45 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4C4rqK0tGNz4Qpv; Mon, 5 Oct 2020 19:52:45 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 011A91B1DF; Mon, 5 Oct 2020 19:52:45 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 095Jqi0h061518; Mon, 5 Oct 2020 19:52:44 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 095JqiKX061517; Mon, 5 Oct 2020 19:52:44 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <202010051952.095JqiKX061517@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Mon, 5 Oct 2020 19:52:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r551540 - head/graphics/rawtherapee X-SVN-Group: ports-head X-SVN-Commit-Author: mandree X-SVN-Commit-Paths: head/graphics/rawtherapee X-SVN-Commit-Revision: 551540 X-SVN-Commit-Repository: ports 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.33 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: Mon, 05 Oct 2020 19:52:45 -0000 Author: mandree Date: Mon Oct 5 19:52:44 2020 New Revision: 551540 URL: https://svnweb.freebsd.org/changeset/ports/551540 Log: graphics/rawtherapee: update comments and _REASONS after 11.3 EOL The 11.3 assessments about limitations carry over to 11.4. Reported by: rene@ Differential Revision: https://reviews.freebsd.org/D26646 Modified: head/graphics/rawtherapee/Makefile Modified: head/graphics/rawtherapee/Makefile ============================================================================== --- head/graphics/rawtherapee/Makefile Mon Oct 5 19:12:21 2020 (r551539) +++ head/graphics/rawtherapee/Makefile Mon Oct 5 19:52:44 2020 (r551540) @@ -76,6 +76,7 @@ CMAKE_ARGS+= -DDOCDIR="${DOCSDIR}" \ CMAKE_ARGS+= -DPROC_TARGET_NUMBER="1" .endif +# XXX FIXME - check this every few months, cmake might be fixed one day .if "${WITH_CCACHE_BUILD}" == "yes" && !defined(NO_CCACHE) CMAKE_ARGS+= -DCMAKE_C_COMPILER_LAUNCHER=${CCACHE_BIN} \ -DCMAKE_CXX_COMPILER_LAUNCHER=${CCACHE_BIN} @@ -99,7 +100,7 @@ TCMALLOC_LIB_DEPENDS= libtcmalloc.so:devel/google-perf # ------------------------------------------------------------------- .if (${OPSYS} == FreeBSD) && (${OSVERSION} < 1200000) -# can't save 16-bit TIFF on FreeBSD 11.3 i386: +# can't save 16-bit TIFF on FreeBSD 11.3 and 11.4 i386 # "TIFFWriteDirectoryTagIfdIfd8Array: Attempt to write value # larger than 0xFFFFFFFF in Classic TIFF file" # @@ -108,7 +109,7 @@ TCMALLOC_LIB_DEPENDS= libtcmalloc.so:devel/google-perf # # Tier-2 only supported on the latest stable FreeBSD release. ONLY_FOR_ARCHS= amd64 -ONLY_FOR_ARCHS_REASON= i386 malfunctions on 11.x - upgrade to 12.x +ONLY_FOR_ARCHS_REASON= On i386, rawtherapee malfunctions under FreeBSD 11.x - upgrade to 12.x .endif .if (${OPSYS} == FreeBSD) && (${OSVERSION} >= 1300000) @@ -136,14 +137,13 @@ _OPT_FLAGS= -ggdb3 -Og # -Og is GCC-specific, use -O1 _OPT_FLAGS= -O3 -funroll-loops .endif -# GCC >= 5.4 includes -fexpensive-optimizations in -O2 already. # x86_64/amd64 includes -msse2 by default .if ${ARCH} == i386 -# and SSE2 has been around since the years 2000...2003 latest +# and SSE2 has been around since the years 2003 latest _OPT_FLAGS+= -msse2 .endif -# workaround for values on the stack that cause SIGBUS on SSE2: +# workaround for values passed on the stack that cause SIGBUS on SSE2 .if ${ARCH} == i386 _OPT_FLAGS+= -mstackrealign .endif