Documentation issues regarding AC_CONFIG_LINKS

2015-01-20 Thread Nikolai Weibull
In section 14.3, an example is given where AC_CONFIG_LINKS for the same dest in a tag is used. This isn’t allowed. Thus, the example needs to be changed to set a variable, for example, case $host in alpha*-*-*) dither_os=alpha ;; powerpc*-*-*) dither_os=powerpc ;;

Documentation issues

2013-06-16 Thread Bruce Korb
Autoconf This manual (24 April 2012) is for GNU Autoconf (version 2.69), a package for creating scripts to configure source code packages using templates and an M4 macro package. Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. [...] 15.2 Working With External

Re: Documentation issues

2013-06-16 Thread Zack Weinberg
On 2013-06-16 1:46 PM, Bruce Korb wrote: [...] 15.2 Working With External Software === [...] AC_ARG_WITH([readline], ... configure.ac:40: the top level configure.ac:43: error: possibly undefined macro: AC_ART_WITH Typo? AC_ARG_WITH, not

Re: Documentation issues

2013-06-16 Thread Bruce Korb
On 06/16/13 12:44, Zack Weinberg wrote: Typo? AC_ARG_WITH, not AC_ART_WITH. This might also explain the AS_HELP_STRING error. Must have been. I fixed them both at once (replacing that with AC_HELP_STRING, which seemed more correct). Now I see that AS is preferred. I think it weird, but