diff options
author | Bruno Haible <bruno@clisp.org> | 2002-05-13 10:05:51 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:07:57 +0200 |
commit | 6a9041fe69074840027d7db0e235644c499d05c4 (patch) | |
tree | 2db7f85341755aa5106ad6f0cd846596fe70b6bd /doc | |
parent | 0b5a38d2c59b2c528987a83ee8785243c2db60c4 (diff) | |
download | external_gettext-6a9041fe69074840027d7db0e235644c499d05c4.zip external_gettext-6a9041fe69074840027d7db0e235644c499d05c4.tar.gz external_gettext-6a9041fe69074840027d7db0e235644c499d05c4.tar.bz2 |
Use a more robust syntax for describing the gettext version in configure.in.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ChangeLog | 5 | ||||
-rw-r--r-- | doc/autopoint.texi | 4 | ||||
-rw-r--r-- | doc/gettext.texi | 16 |
3 files changed, 21 insertions, 4 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog index f62db2f..39879f8 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,8 @@ +2002-05-11 Bruno Haible <bruno@clisp.org> + + * autopoint.texi: Recommend AM_GNU_GETTEXT_VERSION(..) syntax. + * gettext.texi (AM_GNU_GETTEXT_VERSION): New subsection. + 2002-05-08 Bruno Haible <bruno@clisp.org> * matrix.texi: Update. diff --git a/doc/autopoint.texi b/doc/autopoint.texi index 7c726a1..a2827ed 100644 --- a/doc/autopoint.texi +++ b/doc/autopoint.texi @@ -5,8 +5,8 @@ autopoint [@var{option}]... @end example The @code{autopoint} program copies standard gettext infrastructure files -into a source package. It extracts from an assignment of the form -@code{GETTEXT_VERSION=@var{version}}, found in the package's +into a source package. It extracts from a macro call of the form +@code{AM_GNU_GETTEXT_VERSION(@var{version})}, found in the package's @file{configure.in} or @file{configure.ac} file, the gettext version used by the package, and copies the infrastructure files belonging to this version into the package. diff --git a/doc/gettext.texi b/doc/gettext.texi index c0e4d37..085a5e7 100644 --- a/doc/gettext.texi +++ b/doc/gettext.texi @@ -287,6 +287,7 @@ Files You Must Create or Alter Autoconf macros for use in @file{configure.in} * AM_GNU_GETTEXT:: AM_GNU_GETTEXT in @file{gettext.m4} +* AM_GNU_GETTEXT_VERSION:: AM_GNU_GETTEXT_VERSION in @file{gettext.m4} * AM_ICONV:: AM_ICONV in @file{iconv.m4} Integrating with CVS @@ -6242,10 +6243,11 @@ The primary macro is, of course, @code{AM_GNU_GETTEXT}. @menu * AM_GNU_GETTEXT:: AM_GNU_GETTEXT in @file{gettext.m4} +* AM_GNU_GETTEXT_VERSION:: AM_GNU_GETTEXT_VERSION in @file{gettext.m4} * AM_ICONV:: AM_ICONV in @file{iconv.m4} @end menu -@node AM_GNU_GETTEXT, AM_ICONV, autoconf macros, autoconf macros +@node AM_GNU_GETTEXT, AM_GNU_GETTEXT_VERSION, autoconf macros, autoconf macros @subsection AM_GNU_GETTEXT in @file{gettext.m4} @amindex AM_GNU_GETTEXT @@ -6325,7 +6327,17 @@ linker options needed to use iconv and appends them to the @code{LIBINTL} and @code{LTLIBINTL} variables. @end itemize -@node AM_ICONV, , AM_GNU_GETTEXT, autoconf macros +@node AM_GNU_GETTEXT_VERSION, AM_ICONV, AM_GNU_GETTEXT, autoconf macros +@subsection AM_GNU_GETTEXT_VERSION in @file{gettext.m4} + +@amindex AM_GNU_GETTEXT_VERSION +The @code{AM_GNU_GETTEXT_VERSION} macro declares the version number of +the GNU gettext infrastructure that is used by the package. + +The use of this macro is optional; only the @code{autopoint} program makes +use of it (@pxref{CVS Issues}). + +@node AM_ICONV, , AM_GNU_GETTEXT_VERSION, autoconf macros @subsection AM_ICONV in @file{iconv.m4} @amindex AM_ICONV |