From be0be2c150ba1f425631fc1b04843ac6f2316592 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 21 Jun 2023 21:11:46 +0300 Subject: Release version 1.2.1200+4 Suppress -Wdeprecated-non-prototype Clang 15 warning on MacOS. --- libz/tests/minigzip/buildfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'libz/tests') diff --git a/libz/tests/minigzip/buildfile b/libz/tests/minigzip/buildfile index 9419fa1..c58e902 100644 --- a/libz/tests/minigzip/buildfile +++ b/libz/tests/minigzip/buildfile @@ -7,13 +7,15 @@ exe{driver}: {h c}{*} $libs testscript # Disable MSVC warnings that pop up with /W3 and Clang warnings. # +# @@ TMP: try to re-enable on next release. +# if ($c.class == 'msvc') c.coptions += /wd4267 /wd4996 -elif ($c.id == 'clang') +else { - if ($c.version.major >= 15) + if ($c.id.type == 'clang' && $c.version.major >= 15) c.coptions += -Wno-deprecated-non-prototype - if ($c.target.system == 'win32-msvc') + if ($c.id == 'clang' && $c.target.system == 'win32-msvc') c.coptions += -Wno-deprecated-declarations } -- cgit v1.1