1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
dnl Copyright (C) 2009 Sun Microsystems
dnl This file is free software; Sun Microsystems
dnl gives unlimited permission to copy and/or distribute it,
dnl with or without modifications, as long as this notice is preserved.
AC_DEFUN([PANDORA_CHECK_CXX_STANDARD],[
AC_REQUIRE([AC_CXX_COMPILE_STDCXX_0X])
AS_IF([test "$GCC" = "yes"],
[AS_IF([test "$ac_cv_cxx_compile_cxx0x_native" = "yes"],[],
[AS_IF([test "$ac_cv_cxx_compile_cxx0x_gxx" = "yes"],
[CXXFLAGS="-std=gnu++0x ${CXXFLAGS}"],
[CXXFLAGS="-std=gnu++98"])
])
])
AC_CXX_HEADER_STDCXX_98
])
|