]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
removed gnu99 statement from meson recipe 3170/head
authorYann Collet <yann.collet.73@gmail.com>
Mon, 20 Jun 2022 22:02:41 +0000 (15:02 -0700)
committerYann Collet <yann.collet.73@gmail.com>
Tue, 21 Jun 2022 01:18:40 +0000 (18:18 -0700)
build/meson/meson.build

index e0ea3dff9cec4c1fa1ea30a317e538bb79fd4c6f..f264760a34c30e38668b26a306347d709898fc71 100644 (file)
@@ -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',