ac_cxx_old_for_scoping.m4
来自「A C++ class library for scientific compu」· M4 代码 · 共 17 行
M4
17 行
dnl Available from the GNU Autoconf Macro Archive at:dnl http://www.gnu.org/software/ac-archive/htmldoc/ac_cxx_old_for_scoping.htmldnlAC_DEFUN([AC_CXX_OLD_FOR_SCOPING],[AC_CACHE_CHECK(whether the compiler accepts the old for scoping rules,ac_cv_cxx_old_for_scoping,[AC_LANG_SAVE AC_LANG_CPLUSPLUS AC_TRY_COMPILE(,[int z;for (int i=0; i < 10; ++i)z=z+i;z=i;return z;], ac_cv_cxx_old_for_scoping=yes, ac_cv_cxx_old_for_scoping=no) AC_LANG_RESTORE])if test "$ac_cv_cxx_old_for_scoping" = yes; then AC_DEFINE(HAVE_OLD_FOR_SCOPING,,[define if the compiler accepts the old for scoping rules])fi])
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?