+2006-03-15 Stepan Kasal <kasal@ucw.cz>
+
+ * doc/autoconf.texi (Pretty Help Strings): No need to use cached
+ variables in the examples.
+
2006-03-14 Romain Lenglet <rlenglet@users.forge.objectweb.org>
* doc/autoconf.texi (several sections): Cleaned up documentation for
AC_ARG_WITH([foo],
[AS_HELP_STRING([--with-foo],
[use foo (default is no)])],
- [ac_cv_use_foo=$withval],
- [ac_cv_use_foo=no])
+ [use_foo=$withval],
+ [use_foo=no])
@end example
The second argument of @code{AS_HELP_STRING} is
AC_DEFUN([MY_ARG_WITH],
[AC_ARG_WITH([$1],
[AS_HELP_STRING([--with-$1], [use $1 (default is $2)])],
- [ac_cv_use_[]$1=$withval],
- [ac_cv_use_[]$1=$2])])
+ [use_[]$1=$withval],
+ [use_[]$1=$2])])
@end example
@end defmac