Node:Input, Next:Output, Previous:Notices, Up:Setup
configure Input
| AC_CONFIG_SRCDIR (unique-file-in-source-dir) | Macro | 
| unique-file-in-source-dir is some file that is in the package's
source directory; configurechecks for this file's existence to
make sure that the directory that it is told contains the source code in
fact does.  Occasionally people accidentally specify the wrong directory
with--srcdir; this is a safety check.  See configure Invocation, for more information. | 
Packages that do manual configuration or use the install program
might need to tell configure where to find some other shell
scripts by calling AC_CONFIG_AUX_DIR, though the default places
it looks are correct for most cases.
| AC_CONFIG_AUX_DIR (dir) | Macro | 
| Use the auxiliary build tools (e.g., install-sh,config.sub,config.guess, Cygnusconfigure,
Automake and Libtool scripts etc.) that are in directory dir. 
These are auxiliary files used in configuration.  dir can be
either absolute or relative tosrcdir.  The default issrcdirorsrcdir/..orsrcdir/../.., whichever is the first that containsinstall-sh.  The other files are not checked for, so that usingAC_PROG_INSTALLdoes not automatically require distributing the
other auxiliary files.  It checks forinstall.shalso, but that
name is obsolete because somemakehave a rule that createsinstallfrom it if there is noMakefile. |