chiark / gitweb /
tree-wide: beautify remaining copyright statements
[elogind.git] / src / systemd / meson.build
index 17016488e1182b692c5433c4a7d4d906bbcd2a30..f003cc133fe589c2de8317c5a7bf3b875a3469cb 100644 (file)
@@ -1,3 +1,7 @@
+# SPDX-License-Identifier: LGPL-2.1+
+#
+# Copyright © 2017 Zbigniew Jędrzejewski-Szmek
+
 #if 0 /// No systemd-journal in elogind ...
 # _systemd_headers = '''
 #         sd-bus.h
@@ -50,23 +54,36 @@ install_headers(
 #         subdir : 'systemd')
 #else
         subdir : 'elogind/systemd')
-#endif // 0
 
 meson.add_install_script(meson_symlink_headers,
                          includedir,
                          _systemd_headers,
                          '_sd-common.h')
+#endif // 0
 
 
 ############################################################
 
 opts = [['c'],
         ['c', '-ansi'],
-        ['c', '-std=iso9899:1990']]
+        ['c', '-std=iso9899:1990'],
+        ['c', '-std=iso9899:2011']]
+
+if cc.has_argument('-std=iso9899:2017')
+        opts += [['c', '-std=iso9899:2017']]
+endif
 
 cxx = find_program('c++', required : false)
 if cxx.found()
-        opts += [['c++']]
+        opts += [['c++'],
+                 ['c++', '-std=c++98'],
+                 ['c++', '-std=c++11']]
+        if cc.has_argument('-std=c++14')
+                opts += [['c++', '-std=c++14']]
+        endif
+        if cc.has_argument('-std=c++17')
+                opts += [['c++', '-std=c++17']]
+        endif
 endif
 
 foreach header : _systemd_headers