]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
Bump to 2.57f.
authorAkim Demaille <akim@epita.fr>
Tue, 30 Sep 2003 13:02:07 +0000 (13:02 +0000)
committerAkim Demaille <akim@epita.fr>
Tue, 30 Sep 2003 13:02:07 +0000 (13:02 +0000)
NEWS
config/announce-gen
configure
configure.ac
man/autoconf.1
man/autoheader.1
man/autom4te.1
man/autoreconf.1
man/autoscan.1
man/autoupdate.1
man/ifnames.1

diff --git a/NEWS b/NEWS
index 3d484cda3f0616da6c2f3a414c2c2b6c53eaa9e0..d7c28c5d747baa2e461f2d7c9f3f58424186687e 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,6 @@
-* Major changes in Autoconf 2.57e                       -*- outline -*-
+* Major changes in Autoconf 2.57f                       -*- outline -*-
+
+* Major changes in Autoconf 2.57e
 
   Released 2003-09-29, by Akim Demaille.
 
index 01e4047f75f602bab3ac81729fda3f6d621724d1..6ff0e58defeaa7a31ddd0691110a743a4d5ae412 100755 (executable)
@@ -72,6 +72,47 @@ EOF
   exit $exit_code;
 }
 
+sub print_news_deltas ($$$)
+{
+  my ($news_file, $prev_version, $curr_version) = @_;
+
+  print "\n$news_file\n\n";
+
+  # Print all lines from $news_file, starting with the first one
+  # that mentions $curr_version up to but not including
+  # the first occurrence of $prev_version.
+  my $in_items;
+
+  open NEWS, '<', $news_file
+    or die "$ME: $news_file: cannot open for reading: $!\n";
+  while (defined (my $line = <NEWS>))
+    {
+      if (! $in_items)
+       {
+         # Match lines like this one:
+         # * Major changes in release 5.0.1:
+         # but not any other line that starts with a space, *, or -.
+         $line =~ /^(\* Major changes.*|[^ *-].*)\Q$curr_version\E/o
+           or next;
+         $in_items = 1;
+         print $line;
+       }
+      else
+       {
+         # Be careful that this regexp cannot match version numbers
+         # in NEWS items -- they might well say `introduced in 4.5.5',
+         # and we don't want that to match.
+         $line =~ /^(\* Major changes.*|[^ *-].*)\Q$prev_version\E/o
+           and last;
+         print $line;
+       }
+    }
+  close NEWS;
+
+  $in_items
+    or die "$ME: $news_file: no matching lines for `$curr_version'\n";
+}
+
 sub print_changelog_deltas ($$)
 {
   my ($package_name, $prev_version) = @_;
@@ -165,7 +206,7 @@ sub print_changelog_deltas ($$)
   my $curr_version;
   my $release_archive_dir;
   my @url_dir_list;
-  my $news_file;
+  my @news_file;
 
   GetOptions
     (
@@ -174,8 +215,8 @@ sub print_changelog_deltas ($$)
      'previous-version=s' => \$prev_version,
      'current-version=s' => \$curr_version,
      'release-archive-directory=s' => \$release_archive_dir,
-     'url-directory=s@' => \@url_dir_list,
-     'news=s@' => \$news_file,
+     'url-directory=s' => \@url_dir_list,
+     'news=s@' => \@news_file,
 
      help => sub { usage 0 },
      version => sub { print "$ME version $VERSION\n"; exit },
@@ -275,7 +316,7 @@ EOF
 
   foreach my $meth (qw (md5 sha1))
     {
-      foreach my $f (($tgz, $tbz, $xd))
+      foreach my $f ($tgz, $tbz, $xd)
        {
          open IN, '<', $f
            or die "$ME: $f: cannot open for reading: $!\n";
@@ -293,46 +334,29 @@ EOF
     or die "$ME: $tmp: while writing: $!\n";
   chmod 0400, $tmp;  # ignore failure
 
-  if ($news_file)
-    {
-      print "\nNEWS\n\n";
-
-      # Print all lines from $news_file, starting with the first one
-      # that mentions $curr_version up to but not including
-      # the first occurrence of $prev_version.
-      my $in_items;
-      open NEWS, '<', $news_file
-       or die "$ME: $news_file: cannot open for reading: $!\n";
-      while (defined (my $line = <NEWS>))
-       {
-         if ( ! $in_items)
-           {
-             # Match lines like this one:
-             # * Major changes in release 5.0.1:
-             # but not any other line that starts with a space, *, or -.
-             $line =~ /^(\* Major changes.*|[^ *-].*)\Q$curr_version\E/o
-               or next;
-             $in_items = 1;
-             print $line;
-           }
-         else
-           {
-             # Be careful that this regexp cannot match version numbers
-             # in NEWS items -- they might well say `introduced in 4.5.5',
-             # and we don't want that to match.
-             $line =~ /^(\* Major changes.*|[^ *-].*)\Q$prev_version\E/o
-               and last;
-             print $line;
-           }
-       }
-      close NEWS;
-
-      $in_items
-       or die "$ME: $news_file: no matching lines for `$curr_version'\n";
-    }
+  print_news_deltas ($_, $prev_version, $curr_version) foreach @news_file;
 
   $release_type eq 'major'
     or print_changelog_deltas ($package_name, $prev_version);
 
   exit 0;
 }
+
+
+
+### Setup "GNU" style for perl-mode and cperl-mode.
+## Local Variables:
+## perl-indent-level: 2
+## perl-continued-statement-offset: 2
+## perl-continued-brace-offset: 0
+## perl-brace-offset: 0
+## perl-brace-imaginary-offset: 0
+## perl-label-offset: -2
+## cperl-indent-level: 2
+## cperl-brace-offset: 0
+## cperl-continued-brace-offset: 0
+## cperl-label-offset: -2
+## cperl-extra-newline-before-brace: t
+## cperl-merge-trailing-else: nil
+## cperl-continued-statement-offset: 2
+## End:
index 385bad83446402a8a7c587fa3f3d5cff92724aca..45341a06d3e9d0345821deb2db9eeb9ba559d97a 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.57c for GNU Autoconf 2.57e.
+# Generated by GNU Autoconf 2.57e for GNU Autoconf 2.57f.
 #
 # Report bugs to <bug-autoconf@gnu.org>.
 #
@@ -219,6 +219,7 @@ rm -f conf$$ conf$$.exe conf$$.file
 if mkdir -p . 2>/dev/null; then
   as_mkdir_p=:
 else
+  rm -fr ./-p
   as_mkdir_p=false
 fi
 
@@ -267,8 +268,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
 # Identity of this package.
 PACKAGE_NAME='GNU Autoconf'
 PACKAGE_TARNAME='autoconf'
-PACKAGE_VERSION='2.57e'
-PACKAGE_STRING='GNU Autoconf 2.57e'
+PACKAGE_VERSION='2.57f'
+PACKAGE_STRING='GNU Autoconf 2.57f'
 PACKAGE_BUGREPORT='bug-autoconf@gnu.org'
 
 ac_unique_file="ChangeLog"
@@ -729,7 +730,7 @@ if test "$ac_init_help" = "long"; then
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures GNU Autoconf 2.57e to adapt to many kinds of systems.
+\`configure' configures GNU Autoconf 2.57f to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -791,7 +792,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of GNU Autoconf 2.57e:";;
+     short | recursive ) echo "Configuration of GNU Autoconf 2.57f:";;
    esac
   cat <<\_ACEOF
 
@@ -871,8 +872,8 @@ fi
 test -n "$ac_init_help" && exit 0
 if $ac_init_version; then
   cat <<\_ACEOF
-GNU Autoconf configure 2.57e
-generated by GNU Autoconf 2.57c
+GNU Autoconf configure 2.57f
+generated by GNU Autoconf 2.57e
 
 Copyright (C) 2003 Free Software Foundation, Inc.
 This configure script is free software; the Free Software Foundation
@@ -885,8 +886,8 @@ cat >&5 <<_ACEOF
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by GNU Autoconf $as_me 2.57e, which was
-generated by GNU Autoconf 2.57c.  Invocation command line was
+It was created by GNU Autoconf $as_me 2.57f, which was
+generated by GNU Autoconf 2.57e.  Invocation command line was
 
   $ $0 $@
 
@@ -1500,7 +1501,7 @@ fi
 
 # Define the identity of the package.
  PACKAGE='autoconf'
- VERSION='2.57e'
+ VERSION='2.57f'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -2315,6 +2316,7 @@ rm -f conf$$ conf$$.exe conf$$.file
 if mkdir -p . 2>/dev/null; then
   as_mkdir_p=:
 else
+  rm -fr ./-p
   as_mkdir_p=false
 fi
 
@@ -2350,8 +2352,8 @@ _ASBOX
 } >&5
 cat >&5 <<_CSEOF
 
-This file was extended by GNU Autoconf $as_me 2.57e, which was
-generated by GNU Autoconf 2.57c.  Invocation command line was
+This file was extended by GNU Autoconf $as_me 2.57f, which was
+generated by GNU Autoconf 2.57e.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
   CONFIG_HEADERS  = $CONFIG_HEADERS
@@ -2408,8 +2410,8 @@ _ACEOF
 
 cat >>$CONFIG_STATUS <<_ACEOF
 ac_cs_version="\\
-GNU Autoconf config.status 2.57e
-configured by $0, generated by GNU Autoconf 2.57c,
+GNU Autoconf config.status 2.57f
+configured by $0, generated by GNU Autoconf 2.57e,
   with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
 
 Copyright (C) 2003 Free Software Foundation, Inc.
index 50da587864ddd54dc537d96baeee9b96e006fdac..1838c5caab1e8ea7d05a4f7fc421fc2b3a4ed899 100644 (file)
@@ -22,7 +22,7 @@
 # We need AC_CONFIG_TESTDIR.
 AC_PREREQ([2.57])
 
-AC_INIT([GNU Autoconf], [2.57e], [bug-autoconf@gnu.org])
+AC_INIT([GNU Autoconf], [2.57f], [bug-autoconf@gnu.org])
 AC_SUBST([PACKAGE_NAME])dnl
 AC_CONFIG_SRCDIR([ChangeLog])
 
index 80c812f8765c08c86ad34702715b89fc11c6f7ca..33602ef16232ab9845200314dc78e0f85a97d1f8 100644 (file)
@@ -1,5 +1,5 @@
 .\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.33.
-.TH AUTOCONF "1" "September 2003" "autoconf 2.57e" "User Commands"
+.TH AUTOCONF "1" "September 2003" "autoconf 2.57f" "User Commands"
 .SH NAME
 autoconf \- Generate configuration scripts
 .SH SYNOPSIS
index 43f79b8d927c8373893d6d65c3cd8ca61685da51..3219b828d002bfaa6f30f4aabf363401b98c418b 100644 (file)
@@ -73,7 +73,7 @@ Written by Roland McGrath and Akim Demaille.
 .SH "REPORTING BUGS"
 Report bugs to <bug-autoconf@gnu.org>.
 .PP
-autoheader (GNU Autoconf) 2.57e
+autoheader (GNU Autoconf) 2.57f
 .SH COPYRIGHT
 Copyright \(co 2003 Free Software Foundation, Inc.
 .br
index ef23dadf1034174bc1379fb7ab39e4436bd6af7f..775cac5878c5dbf3ec09b32f7ac051de5b7d2eb2 100644 (file)
@@ -1,5 +1,5 @@
 .\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.33.
-.TH AUTOM4TE "1" "September 2003" "autom4te 2.57e" "User Commands"
+.TH AUTOM4TE "1" "September 2003" "autom4te 2.57f" "User Commands"
 .SH NAME
 autom4te \- Generate files and scripts thanks to M4
 .SH SYNOPSIS
index 5e768340648addb0a8fcfaafd7273b70c8c55471..017f39f9974f50e99648fae18e1df19de7ec25d3 100644 (file)
@@ -1,5 +1,5 @@
 .\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.33.
-.TH AUTORECONF "1" "September 2003" "autoreconf 2.57e" "User Commands"
+.TH AUTORECONF "1" "September 2003" "autoreconf 2.57f" "User Commands"
 .SH NAME
 autoreconf \- Update generated configuration files
 .SH SYNOPSIS
index a8ddbfa8a770d82c3b250477512489eec228b309..3c33ad2ef67c42988bcb2748afb1e600ae2ec2bc 100644 (file)
@@ -1,5 +1,5 @@
 .\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.33.
-.TH AUTOSCAN "1" "September 2003" "autoscan 2.57e" "User Commands"
+.TH AUTOSCAN "1" "September 2003" "autoscan 2.57f" "User Commands"
 .SH NAME
 autoscan \- Generate a preliminary configure.in
 .SH SYNOPSIS
index 027b34f7ee9af12ac83cf5abb8439ccf10031c84..632849d0e31d13defc5867b99a9beaee185867f3 100644 (file)
@@ -1,5 +1,5 @@
 .\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.33.
-.TH AUTOUPDATE "1" "September 2003" "autoupdate 2.57e" "User Commands"
+.TH AUTOUPDATE "1" "September 2003" "autoupdate 2.57f" "User Commands"
 .SH NAME
 autoupdate \- Update a configure.in to a newer Autoconf
 .SH SYNOPSIS
index 02b46bddae5cf252ea70a99207d014ec2abc9fbc..3b9a4d4a01b40d7b746b6b1dfab93d417a092b88 100644 (file)
@@ -22,7 +22,7 @@ Written by David J. MacKenzie and Paul Eggert.
 .SH "REPORTING BUGS"
 Report bugs to <bug-autoconf@gnu.org>.
 .PP
-ifnames (GNU Autoconf) 2.57e
+ifnames (GNU Autoconf) 2.57f
 .SH COPYRIGHT
 Copyright \(co 2003 Free Software Foundation, Inc.
 .br