Warning, /graphics/krita/3rdparty/ext_heif/0001-Silence-nasm-2.15-warnings.patch is written in an unsupported language. File is not indexed.

0001 From 0ad48d528f7fa187b493efd03f100e39f9651025 Mon Sep 17 00:00:00 2001
0002 From: "L. E. Segovia" <amy@amyspark.me>
0003 Date: Mon, 22 Feb 2021 12:42:32 +0000
0004 Subject: [PATCH 1/3] Silence nasm 2.15 warnings
0005 
0006 https://bitbucket.org/multicoreware/x265_git/issues/559/warnings-when-assembling-with-nasm-215
0007 ---
0008  source/cmake/CMakeASM_NASMInformation.cmake | 2 ++
0009  1 file changed, 2 insertions(+)
0010 
0011 diff --git a/source/cmake/CMakeASM_NASMInformation.cmake b/source/cmake/CMakeASM_NASMInformation.cmake
0012 index 45c0ad1..62767c2 100644
0013 --- a/source/cmake/CMakeASM_NASMInformation.cmake
0014 +++ b/source/cmake/CMakeASM_NASMInformation.cmake
0015 @@ -40,6 +40,8 @@ else()
0016      list(APPEND ASM_FLAGS -DHIGH_BIT_DEPTH=0 -DBIT_DEPTH=8 -DX265_NS=${X265_NS})
0017  endif()
0018  
0019 +list(APPEND ASM_FLAGS -w-macro-params-legacy)
0020 +
0021  list(APPEND ASM_FLAGS "${CMAKE_ASM_NASM_FLAGS}")
0022  
0023  if(CMAKE_BUILD_TYPE MATCHES Release)
0024 -- 
0025 2.30.1.windows.1
0026