From: Tom Hughes Date: Sun, 29 Aug 2004 09:46:38 +0000 (+0000) Subject: Switch to using the newer forms of AC_INIT and AM_INIT_AUTOMAKE so that X-Git-Tag: svn/VALGRIND_2_2_0~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d70eefb647452a663a2cf33c9acd530fe94e037a;p=thirdparty%2Fvalgrind.git 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 --- 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