aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.am1
-rw-r--r--configure.ac7
-rw-r--r--m4-local/autobuild.m434
3 files changed, 0 insertions, 42 deletions
diff --git a/Makefile.am b/Makefile.am
index 3ddc37d5..c2a016df 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -173,7 +173,6 @@ EXTRA_DIST+= $(DISTDOCS) fetchmail.spec $(distdirs) ucs/README.svn \
m4/xsize.m4 \
m4-local/ac-archive-license.txt \
m4-local/ac_ma_search_package.m4 \
- m4-local/autobuild.m4 \
t.smoke t.rc \
dist-tools/html2txt \
dist-tools/manServer.pl \
diff --git a/configure.ac b/configure.ac
index 671028d9..75543406 100644
--- a/configure.ac
+++ b/configure.ac
@@ -20,13 +20,6 @@ AC_PREREQ(2.60)
dnl 2.60 required for AC_USE_SYSTEM_EXTENSIONS
AM_INIT_AUTOMAKE
-dnl autobuild support, see <http://josefsson.org/autobuild/>
-(
- TZ=GMT
- export TZ
- AB_INIT
-)
-
dnl python is optional
#
# you can pass PYTHON=: in environment or on the command line
diff --git a/m4-local/autobuild.m4 b/m4-local/autobuild.m4
deleted file mode 100644
index bd1f4dc1..00000000
--- a/m4-local/autobuild.m4
+++ /dev/null
@@ -1,34 +0,0 @@
-# autobuild.m4 serial 2 (autobuild-3.3)
-# Copyright (C) 2004 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 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
-])