Blame m4/ax_cxx_compile_stdcxx_11.m4

Packit Service e0cb0c
# =============================================================================
Packit Service e0cb0c
#  https://www.gnu.org/software/autoconf-archive/ax_cxx_compile_stdcxx_11.html
Packit Service e0cb0c
# =============================================================================
Packit Service e0cb0c
#
Packit Service e0cb0c
# SYNOPSIS
Packit Service e0cb0c
#
Packit Service e0cb0c
#   AX_CXX_COMPILE_STDCXX_11([ext|noext], [mandatory|optional])
Packit Service e0cb0c
#
Packit Service e0cb0c
# DESCRIPTION
Packit Service e0cb0c
#
Packit Service e0cb0c
#   Check for baseline language coverage in the compiler for the C++11
Packit Service e0cb0c
#   standard; if necessary, add switches to CXX and CXXCPP to enable
Packit Service e0cb0c
#   support.
Packit Service e0cb0c
#
Packit Service e0cb0c
#   This macro is a convenience alias for calling the AX_CXX_COMPILE_STDCXX
Packit Service e0cb0c
#   macro with the version set to C++11.  The two optional arguments are
Packit Service e0cb0c
#   forwarded literally as the second and third argument respectively.
Packit Service e0cb0c
#   Please see the documentation for the AX_CXX_COMPILE_STDCXX macro for
Packit Service e0cb0c
#   more information.  If you want to use this macro, you also need to
Packit Service e0cb0c
#   download the ax_cxx_compile_stdcxx.m4 file.
Packit Service e0cb0c
#
Packit Service e0cb0c
# LICENSE
Packit Service e0cb0c
#
Packit Service e0cb0c
#   Copyright (c) 2008 Benjamin Kosnik <bkoz@redhat.com>
Packit Service e0cb0c
#   Copyright (c) 2012 Zack Weinberg <zackw@panix.com>
Packit Service e0cb0c
#   Copyright (c) 2013 Roy Stogner <roystgnr@ices.utexas.edu>
Packit Service e0cb0c
#   Copyright (c) 2014, 2015 Google Inc.; contributed by Alexey Sokolov <sokolov@google.com>
Packit Service e0cb0c
#   Copyright (c) 2015 Paul Norman <penorman@mac.com>
Packit Service e0cb0c
#   Copyright (c) 2015 Moritz Klammler <moritz@klammler.eu>
Packit Service e0cb0c
#
Packit Service e0cb0c
#   Copying and distribution of this file, with or without modification, are
Packit Service e0cb0c
#   permitted in any medium without royalty provided the copyright notice
Packit Service e0cb0c
#   and this notice are preserved. This file is offered as-is, without any
Packit Service e0cb0c
#   warranty.
Packit Service e0cb0c
Packit Service e0cb0c
#serial 18
Packit Service e0cb0c
Packit Service e0cb0c
AX_REQUIRE_DEFINED([AX_CXX_COMPILE_STDCXX])
Packit Service e0cb0c
AC_DEFUN([AX_CXX_COMPILE_STDCXX_11], [AX_CXX_COMPILE_STDCXX([11], [$1], [$2])])