mirror of
https://https.git.savannah.gnu.org/git/diffutils.git
synced 2026-01-30 11:24:44 +00:00
106 lines
3.9 KiB
Plaintext
106 lines
3.9 KiB
Plaintext
Installation instructions specific to GNU Diffutils
|
|
|
|
Copyright (C) 2001, 2002 Free Software Foundation, Inc.
|
|
|
|
This file is part of GNU Diffutils.
|
|
|
|
This program 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.
|
|
|
|
This program 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 this program; see the file COPYING. If not, write to
|
|
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
Boston, MA 02111-1307, USA.
|
|
|
|
|
|
Please send comments and problem reports to <bug-gnu-utils@gnu.org>.
|
|
|
|
If you have a problem with internationalization, you might be able to
|
|
work around it as described in ABOUT-NLS by invoking `./configure
|
|
--disable-nls'. Many of the problems arise from dynamic linking
|
|
issues on non-GNU platforms (e.g. with the iconv library). Such
|
|
problems tend to be shared by other GNU applications on these
|
|
platforms, and can usually be fixed by carefully tweaking your non-GNU
|
|
installation. If you have an older version of libiconv, please
|
|
upgrade to the latest one, preferably libiconv-1.8 or newer.
|
|
(libiconv-1.8 is not yet available as of this writing, but it should
|
|
be out soon.) If the problem seems isolated to diffutils, though,
|
|
please report a bug.
|
|
|
|
This program requires a Standard C compiler; if you have an older K&R
|
|
compiler, please install GCC first.
|
|
|
|
If you make changes to the source code, you may need recent test
|
|
versions of GNU build tools to regenerate the intermediate files. The
|
|
following versions were used to generate the intermediate files in
|
|
this distribution:
|
|
|
|
* GNU Autoconf 2.53 <ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.53.tar.gz>
|
|
|
|
* GNU Automake 1.6 <ftp://ftp.gnu.org/gnu/automake/automake-1.6.tar.gz>
|
|
|
|
* GNU help2man 1.25 <ftp://ftp.gnu.org/gnu/help2man/help2man-1.25.tar.gz>,
|
|
patched as follows:
|
|
|
|
2002-03-10 Paul Eggert <eggert@twinsun.com>
|
|
|
|
* help2man.PL: When you see a line like this:
|
|
-I RE --ignore-matching-lines=RE Ignore changes matching RE.
|
|
take the "-I RE --ignore-matching-lines=RE" to be the option,
|
|
and the rest to be a description. This is the style used by
|
|
diffutils.
|
|
|
|
===================================================================
|
|
RCS file: help2man.PL,v
|
|
retrieving revision 1.25
|
|
retrieving revision 1.25.0.1
|
|
diff -pu -r1.25 -r1.25.0.1
|
|
--- help2man.PL 2001/12/03 08:06:09 1.25
|
|
+++ help2man.PL 2002/03/11 05:39:37 1.25.0.1
|
|
@@ -467,7 +467,7 @@ while (length)
|
|
my $content = '';
|
|
|
|
# Option with description.
|
|
- if (s/^( {1,10}([+-]\S.*?))(?:( +)|\n( {20,}))(\S.*)\n//)
|
|
+ if (s/^( {1,10}([+-]\S.*?))(?:( +(?=[^- ]))|\n( {20,}))(\S.*)\n//)
|
|
{
|
|
$matched .= $& if %append;
|
|
$indent = length ($4 || "$1$3");
|
|
|
|
|
|
* GNU gettext 0.11 <ftp://ftp.gnu.org/gnu/gettext/gettext-0.11.tar.gz>,
|
|
patched as follows:
|
|
|
|
2002-03-02 Bruno Haible <bruno@clisp.org>
|
|
|
|
* gettext.m4 (AM_GNU_GETTEXT): Set LIBINTL and LTLIBINTL to empty if
|
|
no preinstalled GNU gettext was found.
|
|
Reported by Paul Eggert.
|
|
|
|
===================================================================
|
|
RCS file: m4/RCS/gettext.m4,v
|
|
retrieving revision 0.11
|
|
retrieving revision 0.11.0.1
|
|
diff -pu -r0.11 -r0.11.0.1
|
|
--- m4/gettext.m4 2002/01/24 12:26:27 0.11
|
|
+++ m4/gettext.m4 2002/03/04 12:34:23 0.11.0.1
|
|
@@ -169,6 +169,11 @@ return (int) gettext ("")]ifelse([$2], [
|
|
|| { test "$gt_cv_func_gnugettext_libintl" = "yes" \
|
|
&& test "$PACKAGE" != gettext; }; then
|
|
gt_use_preinstalled_gnugettext=yes
|
|
+ else
|
|
+ dnl Reset the values set by searching libintl.
|
|
+ LIBINTL=
|
|
+ LTLIBINTL=
|
|
+ INCINTL=
|
|
fi
|
|
|
|
ifelse(gt_included_intl, yes, [
|