This is the mail archive of the libc-hacker@sourceware.cygnus.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: sed 3.02 required?


>>>>> Ulrich Drepper writes:

Uli> Andreas Jaeger <aj@suse.de> writes:
>> AC_CHECK_PROG_VER(SED, gsed sed, --version,
>> [GNU sed version \([0-9]*\.[0-9.]*\)],
>> -  [3.02], SED=: aux_missing=t)
>> +  [3.0[2-9]|3.[1-9]*], SED=: aux_missing=t)

Uli> Seems OK ecept that I would allow 4.x and up as well.

Fine with me.

Andreas

2000-02-25  Andreas Jaeger  <aj@suse.de>

	* configure.in: Allow sed 3.02 or newer versions.

	* manual/install.texi (Tools for Compilation): Document sed
	requirement.

============================================================
Index: manual/install.texi
--- manual/install.texi	2000/01/12 10:19:48	1.37
+++ manual/install.texi	2000/02/25 15:04:34
@@ -392,6 +392,16 @@
 Perl is not required, but it is used if present to test the
 installation.  We may decide to use it elsewhere in the future.
 
+@item
+GNU @code{sed} 3.02 or newer
+
+Sed is used in several places to generate files.  Most scripts work with
+any version of @code{sed}.  The known exception is the script
+@code{po2test.sed} in the @code{intl} subdirectory which is used to
+generate @code{msgs.h} for the testsuite.  This script works correctly
+only with GNU @code{sed} 3.02.  If you like to run the testsuite, you
+should definitly upgrade @code{sed}.
+
 @end itemize
 
 @noindent
============================================================
Index: configure.in
--- configure.in	2000/02/11 18:38:31	1.269
+++ configure.in	2000/02/25 15:04:37
@@ -514,7 +514,7 @@
   [3.1[1-9] | 3.[2-9][0-9] | 4.* | 1.6[89] | 1.7[0-9]], MAKEINFO=: aux_missing=t)
 AC_CHECK_PROG_VER(SED, gsed sed, --version,
   [GNU sed version \([0-9]*\.[0-9.]*\)],
-  [3.02], SED=: aux_missing=t)
+  [3.0[2-9]|3.[1-9]*|[4-9]*], SED=: aux_missing=t)
 
 if test -n "$critic_missing"; then
 AC_MSG_ERROR([

-- 
 Andreas Jaeger
  SuSE Labs aj@suse.de
   private aj@arthur.rhein-neckar.de

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]