Because of the namespace machinery this change makes `autoconf'
about four times faster on complex `configure.in's.
+2000-02-08 Akim Demaille <akim@epita.fr>
+
+ * acgeneral.m4 (AC_PROVIDE): Use `m4_define', not `define'.
+ Because of the namespace machinery this change makes `autoconf'
+ about four times faster on complex `configure.in's.
+
2000-02-08 Akim Demaille <akim@epita.fr>
Open the access to AH_ to users.
# AC_PROVIDE(MACRO-NAME)
# ----------------------
+# We use `m4_define' and not `define' to avoid the cost of the name
+# space machinery. It makes no difference for any of the name
+# spaces.
define(AC_PROVIDE,
-[define([AC_PROVIDE_$1])])
+[m4_define([AC_PROVIDE_$1])])
# AC_PROVIDE(MACRO-NAME)
# ----------------------
+# We use `m4_define' and not `define' to avoid the cost of the name
+# space machinery. It makes no difference for any of the name
+# spaces.
define(AC_PROVIDE,
-[define([AC_PROVIDE_$1])])
+[m4_define([AC_PROVIDE_$1])])