Be AU_DEFUN'd, not AU_ALIAS'd.
Reported by Ralf Corsepius.
* tests/mktests.sh (exclude_list): Skip these variables.
+2000-11-07 Akim Demaille <akim@epita.fr>
+
+ * aclang.m4 (ac_cv_prog_gcc, ac_cv_prog_gxx, ac_cv_prog_g77):
+ Be AU_DEFUN'd, not AU_ALIAS'd.
+ Reported by Ralf Corsepius.
+ * tests/mktests.sh (exclude_list): Skip these variables.
+
2000-11-07 Akim Demaille <akim@epita.fr>
m4_syscmd was reestablished as `syscd' intead of `syscmd' because
# ac_cv_prog_gcc
# --------------
# We used to name the cache variable this way.
-AU_ALIAS([ac_cv_prog_gcc], [ac_cv_c_compiler_gnu])
+AU_DEFUN([ac_cv_prog_gcc],
+[ac_cv_c_compiler_gnu])
# AC_PROG_CC([COMPILER ...])
# ac_cv_prog_gxx
# --------------
# We used to name the cache variable this way.
-AU_ALIAS([ac_cv_prog_gxx], [ac_cv_cxx_compiler_gnu])
+AU_DEFUN([ac_cv_prog_gxx],
+[ac_cv_cxx_compiler_gnu])
# AC_PROG_CXX([LIST-OF-COMPILERS])
# ac_cv_prog_g77
# --------------
# We used to name the cache variable this way.
-AU_ALIAS([ac_cv_prog_g77], [ac_cv_f77_compiler_gnu])
+AU_DEFUN([ac_cv_prog_g77],
+[ac_cv_f77_compiler_gnu])
# AC_PROG_F77([COMPILERS...])
# ac_cv_prog_gcc
# --------------
# We used to name the cache variable this way.
-AU_ALIAS([ac_cv_prog_gcc], [ac_cv_c_compiler_gnu])
+AU_DEFUN([ac_cv_prog_gcc],
+[ac_cv_c_compiler_gnu])
# AC_PROG_CC([COMPILER ...])
# ac_cv_prog_gxx
# --------------
# We used to name the cache variable this way.
-AU_ALIAS([ac_cv_prog_gxx], [ac_cv_cxx_compiler_gnu])
+AU_DEFUN([ac_cv_prog_gxx],
+[ac_cv_cxx_compiler_gnu])
# AC_PROG_CXX([LIST-OF-COMPILERS])
# ac_cv_prog_g77
# --------------
# We used to name the cache variable this way.
-AU_ALIAS([ac_cv_prog_g77], [ac_cv_f77_compiler_gnu])
+AU_DEFUN([ac_cv_prog_g77],
+[ac_cv_f77_compiler_gnu])
# AC_PROG_F77([COMPILERS...])
# ac_cv_prog_gcc
# --------------
# We used to name the cache variable this way.
-AU_ALIAS([ac_cv_prog_gcc], [ac_cv_c_compiler_gnu])
+AU_DEFUN([ac_cv_prog_gcc],
+[ac_cv_c_compiler_gnu])
# AC_PROG_CC([COMPILER ...])
# ac_cv_prog_gxx
# --------------
# We used to name the cache variable this way.
-AU_ALIAS([ac_cv_prog_gxx], [ac_cv_cxx_compiler_gnu])
+AU_DEFUN([ac_cv_prog_gxx],
+[ac_cv_cxx_compiler_gnu])
# AC_PROG_CXX([LIST-OF-COMPILERS])
# ac_cv_prog_g77
# --------------
# We used to name the cache variable this way.
-AU_ALIAS([ac_cv_prog_g77], [ac_cv_f77_compiler_gnu])
+AU_DEFUN([ac_cv_prog_g77],
+[ac_cv_f77_compiler_gnu])
# AC_PROG_F77([COMPILERS...])
# ac_cv_prog_gcc
# --------------
# We used to name the cache variable this way.
-AU_ALIAS([ac_cv_prog_gcc], [ac_cv_c_compiler_gnu])
+AU_DEFUN([ac_cv_prog_gcc],
+[ac_cv_c_compiler_gnu])
# AC_PROG_CC([COMPILER ...])
# ac_cv_prog_gxx
# --------------
# We used to name the cache variable this way.
-AU_ALIAS([ac_cv_prog_gxx], [ac_cv_cxx_compiler_gnu])
+AU_DEFUN([ac_cv_prog_gxx],
+[ac_cv_cxx_compiler_gnu])
# AC_PROG_CXX([LIST-OF-COMPILERS])
# ac_cv_prog_g77
# --------------
# We used to name the cache variable this way.
-AU_ALIAS([ac_cv_prog_g77], [ac_cv_f77_compiler_gnu])
+AU_DEFUN([ac_cv_prog_g77],
+[ac_cv_f77_compiler_gnu])
# AC_PROG_F77([COMPILERS...])
export LC_ALL; LC_ALL=C
+# exclude_list
+# ------------
+# Macros which must not be checked at all (not by syntax.at, not udpate.at).
+# The trailing new line is meant.
+#
+# - ac_cv_prog_gcc, gxx, g77
+# Not macros, just mapping from old variable name to a new one.
+exclude_list='^ac_cv_prog_(gcc|gxx|g77)$
+'
+
+
+
## ----------- ##
## syntax.at. ##
## ----------- ##
# Build a single egrep pattern out of filter_macros_list.
# Sed is used to get rid of the trailing `|' coming from the trailing
# `\n' from `echo'.
-syntax_exclude_egrep=`echo "$syntax_exclude_list" | tr '
+syntax_exclude_egrep=`echo "$exclude_list$syntax_exclude_list" | tr '
' '|' | sed 's/.$//'`
sed 's/^ *//' >syntax.tat <<MK_EOF
# Build a single egrep pattern out of filter_macros_list.
# Sed is used to get rid of the trailing `|' coming from the trailing
# `\n' from `echo'.
-update_exclude_egrep=`echo "$update_exclude_list" | tr '
+update_exclude_egrep=`echo "$exclude_list$update_exclude_list" | tr '
' '|' | sed 's/.$//'`