summaryrefslogtreecommitdiff
path: root/configure.ac
blob: 17b8177bc11e0f4a79d5076c5e924ece100f2041 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
dnl configure the Autoconf Archive

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>

This compilation is free software: you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.

This compilation is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.])

AC_MSG_CHECKING([for available Autoconf macros])
M4SOURCE=""
for n in ${srcdir}/m4/*.m4 ; do
  M4SOURCE="${M4SOURCE} ${n}"
done
AC_SUBST([M4SOURCE])
AC_MSG_RESULT([done])

AC_CONFIG_FILES([Makefile])
AC_OUTPUT