From d70eefb647452a663a2cf33c9acd530fe94e037a Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Sun, 29 Aug 2004 09:46:38 +0000 Subject: [PATCH] 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 --- configure.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index a9f287a33e..47b4e7a464 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 -- 2.47.2