autoconf-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

53-fyi-doc-ac-init.patch


From: Akim Demaille
Subject: 53-fyi-doc-ac-init.patch
Date: Mon, 27 Aug 2001 08:54:56 +0200

Index: ChangeLog
from  Akim Demaille  <address@hidden>

        * doc/autoconf.texi (Input) <AC_INIT>: Move to..
        (Initializing configure): this new node.

Index: doc/autoconf.texi
--- doc/autoconf.texi Tue, 21 Aug 2001 07:55:37 +0200 akim
+++ doc/autoconf.texi Fri, 24 Aug 2001 10:07:55 +0200 akim
@@ -197,6 +197,7 @@ @node Top, Introduction, (dir), (dir)

 Initialization and Output Files

+* Initializing configure::      Option processing etc.
 * Notices::                     Copyright, version numbers in @code{configure}
 * Input::                       Where Autoconf should find files
 * Output::                      Outputting results from the configuration
@@ -1503,6 +1504,7 @@ @node Setup, Existing Tests, Making conf
 initialization and the creation of output files.

 @menu
+* Initializing configure::      Option processing etc.
 * Notices::                     Copyright, version numbers in @code{configure}
 * Input::                       Where Autoconf should find files
 * Output::                      Outputting results from the configuration
@@ -1516,7 +1518,54 @@ @node Setup, Existing Tests, Making conf
 * Default Prefix::              Changing the default installation prefix
 @end menu

address@hidden Notices, Input, Setup, Setup
address@hidden Initializing configure
address@hidden Initializing @command{configure}
+
+Every @code{configure} script must call @code{AC_INIT} before doing
+anything else.  The only other required macro is @code{AC_OUTPUT}
+(@pxref{Output}).
+
address@hidden AC_INIT (@var{package}, @var{version}, @ovar{bug-report-address})
address@hidden INIT
+Process any command-line arguments and perform various initializations
+and verifications.  Set the name of the @var{package} and its
address@hidden  The optional argument @var{bug-report-address} should be
+the email to which users should send bug reports.
+
+These three arguments must be @emph{static}, i.e., there must not be any
+shell computation, but they can be computed by M4.  The following macros
+and output variables are then defined:
+
address@hidden @asis
address@hidden @code{AC_PACKAGE_NAME}, @code{PACKAGE_NAME}
address@hidden PACKAGE_NAME
address@hidden PACKAGE_NAME
+Exactly @var{package}.
+
address@hidden @code{AC_PACKAGE_TARNAME}, @code{PACKAGE_TARNAME}
address@hidden PACKAGE_TARNAME
address@hidden PACKAGE_TARNAME
address@hidden once @samp{GNU } strip, and lower cased.
+
address@hidden @code{AC_PACKAGE_VERSION}, @code{PACKAGE_VERSION}
address@hidden PACKAGE_VERSION
address@hidden PACKAGE_VERSION
+Exactly @var{version}.
+
address@hidden @code{AC_PACKAGE_STRING}, @code{PACKAGE_STRING}
address@hidden PACKAGE_STRING
address@hidden PACKAGE_STRING
+Exactly @address@hidden @var{version}}.
+
address@hidden @code{AC_PACKAGE_BUGREPORT}, @code{PACKAGE_BUGREPORT}
address@hidden PACKAGE_BUGREPORT
address@hidden PACKAGE_BUGREPORT
+Exactly @var{bug-report-address}.
address@hidden table
address@hidden defmac
+
+
address@hidden Notices
 @section Notices in @code{configure}

 The following macros manage version numbers for @code{configure}
@@ -1581,48 +1630,6 @@ @node Notices, Input, Setup, Setup
 @node Input, Output, Notices, Setup
 @section Finding @code{configure} Input

-Every @code{configure} script must call @code{AC_INIT} before doing
-anything else.  The only other required macro is @code{AC_OUTPUT}
-(@pxref{Output}).
-
address@hidden AC_INIT (@var{package}, @var{version}, @ovar{bug-report-address})
address@hidden INIT
-Process any command-line arguments and perform various initializations
-and verifications.  Set the name of the @var{package} and its
address@hidden  The optional argument @var{bug-report-address} should be
-the email to which users should send bug reports.
-
-These three arguments must be @emph{static}, i.e., there must not be any
-shell computation, but they can be computed by M4.  The following macros
-and output variables are then defined:
-
address@hidden @asis
address@hidden @code{AC_PACKAGE_NAME}, @code{PACKAGE_NAME}
address@hidden PACKAGE_NAME
address@hidden PACKAGE_NAME
-Exactly @var{package}.
-
address@hidden @code{AC_PACKAGE_TARNAME}, @code{PACKAGE_TARNAME}
address@hidden PACKAGE_TARNAME
address@hidden PACKAGE_TARNAME
address@hidden once @samp{GNU } strip, and lower cased.
-
address@hidden @code{AC_PACKAGE_VERSION}, @code{PACKAGE_VERSION}
address@hidden PACKAGE_VERSION
address@hidden PACKAGE_VERSION
-Exactly @var{version}.
-
address@hidden @code{AC_PACKAGE_STRING}, @code{PACKAGE_STRING}
address@hidden PACKAGE_STRING
address@hidden PACKAGE_STRING
-Exactly @address@hidden @var{version}}.
-
address@hidden @code{AC_PACKAGE_BUGREPORT}, @code{PACKAGE_BUGREPORT}
address@hidden PACKAGE_BUGREPORT
address@hidden PACKAGE_BUGREPORT
-Exactly @var{bug-report-address}.
address@hidden table
address@hidden defmac

 @defmac AC_CONFIG_SRCDIR (@var{unique-file-in-source-dir})
 @acindex CONFIG_SRCDIR



reply via email to

[Prev in Thread] Current Thread [Next in Thread]