summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore4
-rw-r--r--Makefile.am3
-rw-r--r--configure.ac16
3 files changed, 6 insertions, 17 deletions
diff --git a/.gitignore b/.gitignore
index 81d6bfe..1793203 100644
--- a/.gitignore
+++ b/.gitignore
@@ -18,9 +18,9 @@
/Makefile.in
/aclocal.m4
/autoconf-archive-*-*-*.tar.bz2
+/autoconf-archive-*-*-*.tar.gz
/autom4te.cache/*
+/build-aux/*
/config.log
/config.status
/configure
-/install-sh
-/missing
diff --git a/Makefile.am b/Makefile.am
index 51601f0..158066d 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -9,6 +9,3 @@ MAINTAINERCLEANFILES = missing install-sh configure Makefile.in aclocal.m4
aclocaldir = $(datadir)/aclocal
dist_aclocal_DATA = $(M4SOURCE)
-
-htmldir = $(pkgdatadir)/html
-dist_html_DATA = $(HTMLDOC)
diff --git a/configure.ac b/configure.ac
index eea5b77..17b8177 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,9 +1,9 @@
dnl configure the Autoconf Archive
-AC_INIT([autoconf-archive], [2009-04-29], [simons@cryp.to])
-AM_INIT_AUTOMAKE([-Wall gnu no-dist-gzip dist-bzip2])
-AC_CONFIG_SRCDIR([html/autoconf-archive.css])
-
+AC_INIT([autoconf-archive], [2009-07-19], [autoconf-archive-maintainers@nongnu.org])
+AC_CONFIG_AUX_DIR([build-aux])
+AM_INIT_AUTOMAKE([-Wall gnu dist-bzip2])
+AC_CONFIG_SRCDIR([m4/ax_have_epoll.m4])
AC_COPYRIGHT([dnl
Copyright (c) 2009 by Peter Simons <simons@cryp.to>
@@ -25,13 +25,5 @@ done
AC_SUBST([M4SOURCE])
AC_MSG_RESULT([done])
-AC_MSG_CHECKING([for available documentation])
-HTMLDOC=""
-for n in ${srcdir}/html/*.html ${srcdir}/html/*.css ; do
- HTMLDOC="${HTMLDOC} ${n}"
-done
-AC_SUBST([HTMLDOC])
-AC_MSG_RESULT([done])
-
AC_CONFIG_FILES([Makefile])
AC_OUTPUT