aboutsummaryrefslogtreecommitdiffstats
path: root/m4
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2007-04-25 11:29:27 +0200
committerJim Meyering <jim@meyering.net>2007-04-25 11:33:44 +0200
commit0e8bf7bffed08aa2e042287cb24928275ce0cbae (patch)
treee9cd8fed9146994ae97133f76edcd6b4bf012562 /m4
parent* bootstrap.conf (gnulib_modules): Add fseeko and ftello. (diff)
downloadcoreutils-0e8bf7bffed08aa2e042287cb24928275ce0cbae.tar.gz
coreutils-0e8bf7bffed08aa2e042287cb24928275ce0cbae.zip
* bootstrap.conf (gnulib_modules): Add autobuild.
* m4/autobuild.m4: Remove file. Now, provided by gnulib.
Diffstat (limited to 'm4')
-rw-r--r--m4/.cvsignore1
-rw-r--r--m4/.gitignore1
-rw-r--r--m4/ChangeLog4
-rw-r--r--m4/autobuild.m434
4 files changed, 6 insertions, 34 deletions
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
-])