]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
Version 2.56. AUTOCONF-2.56
authorAkim Demaille <akim@epita.fr>
Fri, 15 Nov 2002 09:17:30 +0000 (09:17 +0000)
committerAkim Demaille <akim@epita.fr>
Fri, 15 Nov 2002 09:17:30 +0000 (09:17 +0000)
* config/install-sh: chmod +x.
From Paul Eggert.
* config/move-if-change: Indenting changes.
* Makefile.am (AUTOMAKE_OPTIONS): Move to...
* configure.ac (AM_INIT_AUTOMAKE): here.
Require 1.7.1.

14 files changed:
ChangeLog
Makefile.am
Makefile.in
NEWS
config/move-if-change
configure
configure.ac
man/autoconf.1
man/autoheader.1
man/autom4te.1
man/autoreconf.1
man/autoscan.1
man/autoupdate.1
man/ifnames.1

index 9e5ced0708cc76afc3962085ef2284d9ab9fc686..fecdd307109bec6627acfbf8e9aa9315fb41a8a2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2002-11-15  Akim Demaille  <akim@epita.fr>
+
+       Version 2.56.
+
+       * config/install-sh: chmod +x.
+       From Paul Eggert.
+       * config/move-if-change: Indenting changes.
+       * Makefile.am (AUTOMAKE_OPTIONS): Move to...
+       * configure.ac (AM_INIT_AUTOMAKE): here.
+       Require 1.7.1.
+
 2002-11-14  Akim Demaille  <akim@epita.fr>
 
        Version 2.55.
index cef5fdb1f24a97b17c660466e8725d506a03821c..60614af95471d5e02c41ad6ac6c55e010e5d3865 100644 (file)
@@ -18,8 +18,6 @@
 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 ## 02111-1307, USA.
 
-AUTOMAKE_OPTIONS = check-news 1.6c dist-bzip2 readme-alpha
-
 # bin/ and tests/ must be run first, as they build the tests executables
 # (tests/autom4te etc.), that we happen to use here.
 SUBDIRS = bin tests . lib config man doc
index 4ee2edbab5b306739ccd927f6bb631ed0d1fe297..e6b87752d3f1a220c2c4a7d7dcbf3cf818d129d8 100644 (file)
@@ -92,8 +92,6 @@ sharedstatedir = @sharedstatedir@
 sysconfdir = @sysconfdir@
 target_alias = @target_alias@
 
-AUTOMAKE_OPTIONS = check-news 1.6c dist-bzip2 readme-alpha
-
 # bin/ and tests/ must be run first, as they build the tests executables
 # (tests/autom4te etc.), that we happen to use here.
 SUBDIRS = bin tests . lib config man doc
diff --git a/NEWS b/NEWS
index 5e1eae136ca162ef5f419d5fa09b24e270cc391a..20a786b5f979e1690a2da534dd1ac2cf026d1cd9 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,12 @@
-* Major changes in Autoconf 2.55                       -*- outline -*-
+* Major changes in Autoconf 2.56                       -*- outline -*-
+
+  Released November 15th, 2002.
+
+One packaging problem fixed (config/install-sh was not executable).
+
 \f
+* Major changes in Autoconf 2.55
+
   Released November 14th, 2002.
 
 Release tips:
@@ -102,7 +109,7 @@ Release tips:
   assignments.
 
 
-** Plans for 2.56
+** Plans for 2.57
 
 - ./configure <host>
 
index 66d8b8adc7fbcada50bc93f3b1f0390c39d73135..5cdc3b4d78dcb4d7c171d9f232d0f371f29a7370 100755 (executable)
@@ -1,17 +1,13 @@
 #!/bin/sh
 # Like mv $1 $2, but if the files are the same, just delete $1.
 # Status is 0 if $2 is changed, 1 otherwise.
-if
-test -r $2
-then
-if
-cmp -s $1 $2
-then
-echo $2 is unchanged
-rm -f $1
+if test -r $2; then
+  if cmp -s $1 $2; then
+    echo $2 is unchanged
+    rm -f $1
+  else
+    mv -f $1 $2
+  fi
 else
-mv -f $1 $2
-fi
-else
-mv -f $1 $2
+  mv -f $1 $2
 fi
index f390f6623851f869fba8ef8a0da8a0ae9af67ea4..61c5ec915d7aeb19da04218558ed692923dfd852 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.55 for GNU Autoconf 2.55.
+# Generated by GNU Autoconf 2.55 for GNU Autoconf 2.56.
 #
 # Report bugs to <bug-autoconf@gnu.org>.
 #
@@ -268,8 +268,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
 # Identity of this package.
 PACKAGE_NAME='GNU Autoconf'
 PACKAGE_TARNAME='autoconf'
-PACKAGE_VERSION='2.55'
-PACKAGE_STRING='GNU Autoconf 2.55'
+PACKAGE_VERSION='2.56'
+PACKAGE_STRING='GNU Autoconf 2.56'
 PACKAGE_BUGREPORT='bug-autoconf@gnu.org'
 
 ac_unique_file="ChangeLog"
@@ -722,7 +722,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.55 to adapt to many kinds of systems.
+\`configure' configures GNU Autoconf 2.56 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -784,7 +784,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of GNU Autoconf 2.55:";;
+     short | recursive ) echo "Configuration of GNU Autoconf 2.56:";;
    esac
   cat <<\_ACEOF
 
@@ -856,7 +856,7 @@ fi
 test -n "$ac_init_help" && exit 0
 if $ac_init_version; then
   cat <<\_ACEOF
-GNU Autoconf configure 2.55
+GNU Autoconf configure 2.56
 generated by GNU Autoconf 2.55
 
 Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
@@ -871,7 +871,7 @@ 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.55, which was
+It was created by GNU Autoconf $as_me 2.56, which was
 generated by GNU Autoconf 2.55.  Invocation command line was
 
   $ $0 $@
@@ -1476,7 +1476,7 @@ fi
 
 # Define the identity of the package.
  PACKAGE=autoconf
- VERSION=2.55
+ VERSION=2.56
 
 
 cat >>confdefs.h <<_ACEOF
@@ -2324,7 +2324,7 @@ _ASBOX
 } >&5
 cat >&5 <<_CSEOF
 
-This file was extended by GNU Autoconf $as_me 2.55, which was
+This file was extended by GNU Autoconf $as_me 2.56, which was
 generated by GNU Autoconf 2.55.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -2382,7 +2382,7 @@ _ACEOF
 
 cat >>$CONFIG_STATUS <<_ACEOF
 ac_cs_version="\\
-GNU Autoconf config.status 2.55
+GNU Autoconf config.status 2.56
 configured by $0, generated by GNU Autoconf 2.55,
   with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
 
index 0cce98f62c158898c97c6e2edf64467476bb25dd..f5338fd55402cfa3cf366f19e038b267d70717c6 100644 (file)
 # 02111-1307, USA.
 
 # We need AC_CONFIG_TESTDIR.
-AC_PREREQ([2.54])
+AC_PREREQ([2.55])
 
-AC_INIT([GNU Autoconf], [2.55], [bug-autoconf@gnu.org])
+AC_INIT([GNU Autoconf], [2.56], [bug-autoconf@gnu.org])
 AC_SUBST([PACKAGE_NAME])dnl
 AC_CONFIG_SRCDIR([ChangeLog])
 
 AC_CONFIG_AUX_DIR([config])
 AC_CONFIG_FILES([config/Makefile])
 
-AM_INIT_AUTOMAKE
+AM_INIT_AUTOMAKE([check-news 1.7.1 dist-bzip2 readme-alpha])
 
 # Initialize the test suite and build position independent wrappers.
 AC_CONFIG_TESTDIR([tests])
index a9704183903e69764a2f0c035079e2003b614414..a29a86132107c466844125081f4e728cb700a3d5 100644 (file)
@@ -1,5 +1,5 @@
 .\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.29.
-.TH AUTOCONF "1" "November 2002" "autoconf 2.55" "User Commands"
+.TH AUTOCONF "1" "November 2002" "autoconf 2.56" "User Commands"
 .SH NAME
 autoconf \- Generate configuration scripts
 .SH SYNOPSIS
index 096386999c985bde2597a4a4f8947eb78578b742..9782f57908fc8a09948447814eaae9d29cbeab4b 100644 (file)
@@ -1,5 +1,5 @@
 .\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.29.
-.TH AUTOHEADER "1" "November 2002" "autoheader 2.55" "User Commands"
+.TH AUTOHEADER "1" "November 2002" "autoheader 2.56" "User Commands"
 .SH NAME
 autoheader \- Create a template header for configure
 .SH SYNOPSIS
index 4814a3a202448ba6a88cf4df6703ca14f92f5739..34ca7bd47d71e038b7718723caffe3867ec3f698 100644 (file)
@@ -1,5 +1,5 @@
 .\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.29.
-.TH AUTOM4TE "1" "November 2002" "autom4te 2.55" "User Commands"
+.TH AUTOM4TE "1" "November 2002" "autom4te 2.56" "User Commands"
 .SH NAME
 autom4te \- Generate files and scripts thanks to M4
 .SH SYNOPSIS
index 43617912a065ada30301e25e2c653c8e674141a0..b14aea064f39ceefc1c743e587801faa08640498 100644 (file)
@@ -1,5 +1,5 @@
 .\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.29.
-.TH AUTORECONF "1" "November 2002" "autoreconf 2.55" "User Commands"
+.TH AUTORECONF "1" "November 2002" "autoreconf 2.56" "User Commands"
 .SH NAME
 autoreconf \- Update generated configuration files
 .SH SYNOPSIS
index 10b3f2d64d2258011fd06268680bacdf16f85860..4f174e410a3d773058b279a776b85a13a2baa52d 100644 (file)
@@ -1,5 +1,5 @@
 .\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.29.
-.TH AUTOSCAN "1" "November 2002" "autoscan 2.55" "User Commands"
+.TH AUTOSCAN "1" "November 2002" "autoscan 2.56" "User Commands"
 .SH NAME
 autoscan \- Generate a preliminary configure.in
 .SH SYNOPSIS
index ee9b3b00076cb57995dc14602b6974a199b8762c..417d1776961fe6397a20e3378c9cf0db6c956ace 100644 (file)
@@ -1,5 +1,5 @@
 .\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.29.
-.TH AUTOUPDATE "1" "November 2002" "autoupdate 2.55" "User Commands"
+.TH AUTOUPDATE "1" "November 2002" "autoupdate 2.56" "User Commands"
 .SH NAME
 autoupdate \- Update a configure.in to a newer Autoconf
 .SH SYNOPSIS
index 4c536b7d0fc4037af2d49b60419ba104f392d9cd..4fd4967ecd91c9ed795b80dd475a3bd45915bc09 100644 (file)
@@ -26,7 +26,7 @@ warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 .SH "REPORTING BUGS"
 Report bugs to <bug-autoconf@gnu.org>.
 .PP
-ifnames (GNU Autoconf) 2.55
+ifnames (GNU Autoconf) 2.56
 .SH "SEE ALSO"
 .BR autoconf (1),
 .BR automake (1),