From: Yann Collet Date: Mon, 20 Jun 2022 22:02:41 +0000 (-0700) Subject: removed gnu99 statement from meson recipe X-Git-Tag: v1.5.4^2~196^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F3170%2Fhead;p=thirdparty%2Fzstd.git removed gnu99 statement from meson recipe --- diff --git a/build/meson/meson.build b/build/meson/meson.build index e0ea3dff9..f264760a3 100644 --- a/build/meson/meson.build +++ b/build/meson/meson.build @@ -12,7 +12,10 @@ project('zstd', ['c', 'cpp'], license: ['BSD', 'GPLv2'], default_options : [ - 'c_std=gnu99', + # There shouldn't be any need to force a C standard convention for zstd + # but in case one would want that anyway, this can be done here. + # 'c_std=gnu99', + # c++11 standard is useful for pzstd 'cpp_std=c++11', 'buildtype=release', 'warning_level=3',