summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authordobey <>2004-06-13 00:02:05 +0000
committerdobey <>2004-06-13 00:02:05 +0000
commit3764e118e4fd25f4d4aa8d5be13f2d564a704717 (patch)
tree50c25e8bc6ac677e92e454ad70c346d5bd948d4d /README
parent9131ceddf880923e6fe0756dafcd618fafdc8cb1 (diff)
downloadintltool-3764e118e4fd25f4d4aa8d5be13f2d564a704717.tar.gz
2004-06-12 Rodney Dawes <dobey@novell.com>
* README: Document the changes to intltool.m4 for declaring that an application does not need the XML processing features of intltool * intltool.m4: Add the second option of [no-xml] to AC_PROG_INTLTOOL so that applications can request to not use the XML processing features of intltool that require the XML::Parser perl module Fixes #130850
Diffstat (limited to 'README')
-rw-r--r--README14
1 files changed, 10 insertions, 4 deletions
diff --git a/README b/README
index 8ef952e..7256d1b 100644
--- a/README
+++ b/README
@@ -43,7 +43,7 @@ To use intltool in your module, do the following:
o Add this line to configure.in near the top
- AC_PROG_INTLTOOL([minimum required version])
+ AC_PROG_INTLTOOL([minimum required version], [no-xml])
o Add intltool-extract.in, intltool-merge.in, and intltool-update.in
to EXTRA_DIST in your top-level Makefile.am and also to the top-level
@@ -64,9 +64,15 @@ Examples of packages that use intltool are listed in the USED file.
Details of the AC_PROG_INTLTOOL macro
-------------------------------------------
-The parameter indicates the minimum required version. The
-configure script will halt if the version is older than
-the parameter.
+The first parameter indicates the minimum required version. The
+configure script will halt if the version is older than the first
+parameter.
+
+The second parameter is to tell intltool that we don't need the
+extended xml parsing abilities provided by the XML::Parser perl
+module. If it is not provided, or is any value other than "no-xml",
+then XML::Parser will be checked for by the configure script. This
+feature is only available in intltool 0.31 or newer.
Extra Steps for DESKTOP Files
..............................