Switch to using the newer forms of AC_INIT and AM_INIT_AUTOMAKE so that
configure can print the package name correctly.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2624 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/configure.in b/configure.in
index a9f287a..47b4e7a 100644
--- a/configure.in
+++ b/configure.in
@@ -1,7 +1,8 @@
 # Process this file with autoconf to produce a configure script.
-AC_INIT(coregrind/vg_main.c)   # give me a source file, any source file...
+AC_INIT(Valgrind, 2.1.3.CVS, valgrind-users@lists.sourceforge.net)
+AC_CONFIG_SRCDIR(coregrind/vg_main.c)
 AM_CONFIG_HEADER(config.h)
-AM_INIT_AUTOMAKE(valgrind, 2.1.3.CVS)
+AM_INIT_AUTOMAKE
 
 AM_MAINTAINER_MODE