* bootstrap.conf (gnulib_modules): Add autobuild.
authorJim Meyering <jim@meyering.net>
Wed, 25 Apr 2007 09:29:27 +0000 (11:29 +0200)
committerJim Meyering <jim@meyering.net>
Wed, 25 Apr 2007 09:33:44 +0000 (11:33 +0200)
* m4/autobuild.m4: Remove file.  Now, provided by gnulib.

ChangeLog
bootstrap.conf
m4/.cvsignore
m4/.gitignore
m4/ChangeLog
m4/autobuild.m4 [deleted file]

index 16768c2..cebd70a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
 
index 847e584..1ed2978 100644 (file)
@@ -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
index 3522a36..d8a1209 100644 (file)
@@ -7,6 +7,7 @@ argmatch.m4
 arpa_inet_h.m4
 assert.m4
 atexit.m4
+autobuild.m4
 backupfile.m4
 base64.m4
 bison.m4
index 7069c43..0876685 100644 (file)
@@ -6,6 +6,7 @@ argmatch.m4
 arpa_inet_h.m4
 assert.m4
 atexit.m4
+autobuild.m4
 backupfile.m4
 base64.m4
 bison.m4
index 25cac3a..8b350df 100644 (file)
@@ -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 (file)
index bb3407b..0000000
+++ /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
-])