mirror of
git://git.sv.gnu.org/autoconf
synced 2024-12-03 02:00:36 +08:00
2fa1c5c37e
* doc/autoconf.texi (Introduction): Likewise. Reword to avoid some formatting glitches. Use "#!/bin/sh", not "#! /bin/sh"; the space isn't needed these days. Clarify explanation of HP compiler bug. Redo example output tp match current CVS snapshot. Use @example.org in email addresses when the examples might get inadvertently cut-and-pasted into user code. Remove example of autom4te usage that doesn't seem to work now. Use modern AC_INIT (except when the example is meant to be shown with Autoconf 2.13). Update ksh info for Solaris 9 and later. KB -> kB. Modernize description of Automake versions a bit. Don't claim a future version of Autoconf is near. Add [] to examples, so that the manual follows its own advice about quoting better. * doc/install.texi: Reword to avoid some formatting glitches.
62 lines
2.5 KiB
Plaintext
62 lines
2.5 KiB
Plaintext
-*- text -*-
|
|
|
|
Autoconf
|
|
|
|
Autoconf is an extensible package of M4 macros that produce shell
|
|
scripts to automatically configure software source code packages.
|
|
These scripts can adapt the packages to many kinds of UNIX-like
|
|
systems without manual user intervention. Autoconf creates a
|
|
configuration script for a package from a template file that lists the
|
|
operating system features that the package can use, in the form of M4
|
|
macro calls.
|
|
|
|
Producing configuration scripts using Autoconf requires GNU M4 and
|
|
Perl. You must install GNU M4 (version 1.4.3 or later) and Perl (5.005_03
|
|
or later) before configuring Autoconf, so that Autoconf's configure
|
|
script can find them. The configuration scripts produced by Autoconf
|
|
are self-contained, so their users do not need to have Autoconf (or
|
|
GNU M4, Perl, etc.).
|
|
|
|
You can get GNU M4 1.4.3 here:
|
|
|
|
ftp://ftp.gnu.org/gnu/m4/m4-1.4.3.tar.gz
|
|
|
|
The file INSTALL should be distributed with packages that use
|
|
Autoconf-generated configure scripts and Makefiles that conform to the
|
|
GNU coding standards. The package's README can just give an overview
|
|
of the package, where to report bugs, and a pointer to INSTALL for
|
|
instructions on compilation and installation. This removes the need
|
|
to maintain many similar sets of installation instructions.
|
|
|
|
Be sure to read BUGS (especially if this version is not an official
|
|
release) and INSTALL.
|
|
|
|
Mail suggestions to autoconf@gnu.org, report bugs to
|
|
bug-autoconf@gnu.org, and submit patches to autoconf-patches@gnu.org.
|
|
Always include the Autoconf version number, which you can get by
|
|
running `autoconf --version'. Archives of bug-autoconf@gnu.org can be
|
|
found in <http://lists.gnu.org/archive/html/bug-autoconf/>, and
|
|
similarly for the other mailing lists.
|
|
|
|
-----
|
|
|
|
Copyright (C) 1992, 1993, 1994, 1998, 2000, 2001, 2002, 2003, 2004,
|
|
2005 Free Software Foundation, Inc.
|
|
|
|
This file is part of GNU Autoconf.
|
|
|
|
GNU Autoconf is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
any later version.
|
|
|
|
GNU Autoconf is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with GNU Autoconf; see the file COPYING. If not, write to
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA.
|