diff options
author | Bruno Haible <bruno@clisp.org> | 2000-07-28 23:48:01 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2000-07-28 23:48:01 +0000 |
commit | 3a598c9e2c973ab04fce6ebb5342a0f9241478fc (patch) | |
tree | 398e8fca22443fd057445a6e9a8d3f9055425c6d /m4 | |
parent | 8b4b3461ea4ca419efb94a0eee2c7aca5f8fb9ec (diff) | |
download | external_gettext-3a598c9e2c973ab04fce6ebb5342a0f9241478fc.zip external_gettext-3a598c9e2c973ab04fce6ebb5342a0f9241478fc.tar.gz external_gettext-3a598c9e2c973ab04fce6ebb5342a0f9241478fc.tar.bz2 |
Add some comments.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/gettext.m4 | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/m4/gettext.m4 b/m4/gettext.m4 index c21580d..6b4d0b3 100644 --- a/m4/gettext.m4 +++ b/m4/gettext.m4 @@ -17,6 +17,25 @@ dnl LIBDIR is used to find the intl libraries. If empty, dnl the value `$(top_builddir)/intl/' is used. dnl INCDIR is used to find the include files. If empty, dnl the value `intl' is used. +dnl +dnl The result of the configuration is one of five cases: +dnl 1) GNU gettext, as included in the intl subdirectory, will be compiled +dnl and used. +dnl Catalog format: GNU --> DATADIRNAME = share +dnl Catalog extension: .mo after installation, .gmo in source tree +dnl 2) GNU gettext has been found in the system's C library. +dnl Catalog format: GNU --> DATADIRNAME = share +dnl Catalog extension: .mo after installation, .gmo in source tree +dnl 3) An X/Open gettext has been found in the system's C library. +dnl Catalog format: Platform dependent --> DATADIRNAME = lib +dnl Catalog extension: .mo +dnl 4) A catgets has been found in the system's C library. +dnl Catalog format: Platform dependent --> DATADIRNAME = lib +dnl Catalog extension: .cat +dbl 5) No internationalization, always use English msgid. +dnl Catalog format: none +dnl Catalog extension: none +dnl AC_DEFUN(AM_WITH_NLS, [AC_MSG_CHECKING([whether NLS is requested]) dnl Default is enabled NLS |