Commit d3b892b8 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

m4: improve C++11 check

parent dab7c501
...@@ -29,6 +29,7 @@ ...@@ -29,6 +29,7 @@
# Copyright (c) 2013 Roy Stogner <roystgnr@ices.utexas.edu> # Copyright (c) 2013 Roy Stogner <roystgnr@ices.utexas.edu>
# Copyright (c) 2014 Alexey Sokolov <sokolov@google.com> # Copyright (c) 2014 Alexey Sokolov <sokolov@google.com>
# Copyright (c) 2014, 2015 Google Inc. # Copyright (c) 2014, 2015 Google Inc.
# Copyright (c) 2015 VLC authors and VideoLAN
# #
# Copying and distribution of this file, with or without modification, are # Copying and distribution of this file, with or without modification, are
# permitted in any medium without royalty provided the copyright notice # permitted in any medium without royalty provided the copyright notice
...@@ -81,6 +82,9 @@ m4_define([_AX_CXX_COMPILE_STDCXX_11_testbody], [[ ...@@ -81,6 +82,9 @@ m4_define([_AX_CXX_COMPILE_STDCXX_11_testbody], [[
func<foo>(0); func<foo>(0);
} }
} }
#include <cinttypes>
constexpr uint64_t constantname = UINT64_C(0x100000000);
]]) ]])
AC_DEFUN([AX_CXX_COMPILE_STDCXX_11], [dnl AC_DEFUN([AX_CXX_COMPILE_STDCXX_11], [dnl
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment