summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2009-07-20 00:36:32 +0200
committerPeter Simons <simons@cryp.to>2009-07-20 00:36:32 +0200
commitafae3bfda6f2a15cfef4f7d9e1cb961136fdf89c (patch)
tree7c426a4a4af263598a2a554b7371a1fd36dbca07 /configure.ac
parent822cdbb0d636d26bc3557c11cf22fed152434c19 (diff)
downloadautoconf-archive-afae3bfda6f2a15cfef4f7d9e1cb961136fdf89c.tar.gz
configure.ac: display version string as part of the configure script
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 3438173..8dd95e0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -17,7 +17,9 @@ 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])
+AC_MSG_NOTICE([Autoconf Archive version $VERSION])
+
+AC_MSG_CHECKING([for available macros])
M4SOURCE=""
for n in ${srcdir}/m4/*.m4 ; do
M4SOURCE="${M4SOURCE} ${n}"
@@ -27,3 +29,5 @@ AC_MSG_RESULT([done])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
+
+dnl Responsibility shifts to the user after this point.