diff options
author | Jim Meyering <jim@meyering.net> | 2007-04-25 11:29:27 +0200 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2007-04-25 11:33:44 +0200 |
commit | 0e8bf7bffed08aa2e042287cb24928275ce0cbae (patch) | |
tree | e9cd8fed9146994ae97133f76edcd6b4bf012562 | |
parent | 3d19a12976fcab887458fc61235c2506d68a6fba (diff) | |
download | coreutils-0e8bf7bffed08aa2e042287cb24928275ce0cbae.tar.xz |
* bootstrap.conf (gnulib_modules): Add autobuild.
* m4/autobuild.m4: Remove file. Now, provided by gnulib.
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | bootstrap.conf | 4 | ||||
-rw-r--r-- | m4/.cvsignore | 1 | ||||
-rw-r--r-- | m4/.gitignore | 1 | ||||
-rw-r--r-- | m4/ChangeLog | 4 | ||||
-rw-r--r-- | m4/autobuild.m4 | 34 |
6 files changed, 10 insertions, 35 deletions
@@ -1,6 +1,7 @@ 2007-04-25 Jim Meyering <jim@meyering.net> * bootstrap.conf (gnulib_modules): Add fseeko and ftello. + (gnulib_modules): Add autobuild. 2007-04-24 Jim Meyering <jim@meyering.net> diff --git a/bootstrap.conf b/bootstrap.conf index 847e58473..1ed2978bb 100644 --- a/bootstrap.conf +++ b/bootstrap.conf @@ -38,7 +38,9 @@ obsolete_gnulib_modules=' gnulib_modules=" $avoided_gnulib_modules $obsolete_gnulib_modules - acl alloca announce-gen argmatch assert backupfile base64 + acl alloca announce-gen argmatch assert + autobuild + backupfile base64 c-strcase c-strtod c-strtold calloc canon-host canonicalize chown cloexec config-h configmake diff --git a/m4/.cvsignore b/m4/.cvsignore index 3522a36ef..d8a1209e5 100644 --- a/m4/.cvsignore +++ b/m4/.cvsignore @@ -7,6 +7,7 @@ argmatch.m4 arpa_inet_h.m4 assert.m4 atexit.m4 +autobuild.m4 backupfile.m4 base64.m4 bison.m4 diff --git a/m4/.gitignore b/m4/.gitignore index 7069c4309..0876685a6 100644 --- a/m4/.gitignore +++ b/m4/.gitignore @@ -6,6 +6,7 @@ argmatch.m4 arpa_inet_h.m4 assert.m4 atexit.m4 +autobuild.m4 backupfile.m4 base64.m4 bison.m4 diff --git a/m4/ChangeLog b/m4/ChangeLog index 25cac3a2d..8b350dfec 100644 --- a/m4/ChangeLog +++ b/m4/ChangeLog @@ -1,3 +1,7 @@ +2007-04-25 Jim Meyering <jim@meyering.net> + + * autobuild.m4: Remove file. Now, provided by gnulib. + 2007-01-19 Jim Meyering <jim@meyering.net> * .cvsignore, .gitignore: Add more bootstrap-inserted file names. diff --git a/m4/autobuild.m4 b/m4/autobuild.m4 deleted file mode 100644 index bb3407b71..000000000 --- a/m4/autobuild.m4 +++ /dev/null @@ -1,34 +0,0 @@ -# autobuild.m4 serial 2 (autobuild-3.3) -# Copyright (C) 2004, 2006 Simon Josefsson -# -# This file is free software, distributed under the terms of the GNU -# General Public License. As a special exception to the GNU General -# Public License, this file may be distributed as part of a program -# that contains a configuration script generated by Autoconf, under -# the same distribution terms as the rest of that program. -# -# This file can be used in projects which are not available under -# the GNU General Public License or the GNU Library General Public -# License but which still want to provide support for Autobuild. - -# Usage: AB_INIT([MODE]). -AC_DEFUN([AB_INIT], -[ - AC_REQUIRE([AC_CANONICAL_BUILD]) - AC_REQUIRE([AC_CANONICAL_HOST]) - - AC_MSG_NOTICE([autobuild project... ${PACKAGE_NAME:-$PACKAGE}]) - AC_MSG_NOTICE([autobuild revision... ${PACKAGE_VERSION:-$VERSION}]) - hostname=`hostname` - if test "$hostname"; then - AC_MSG_NOTICE([autobuild hostname... $hostname]) - fi - ifelse([$1],[],,[AC_MSG_NOTICE([autobuild mode... $1])]) - date=`date +%Y%m%d-%H%M%S` - if test "$?" != 0; then - date=`date` - fi - if test "$date"; then - AC_MSG_NOTICE([autobuild timestamp... $date]) - fi -]) |