# HG changeset patch # User Ethan Blanton # Date 1079849935 0 # Node ID dc07d60d118318f6731f77d8c620163b8309d848 # Parent 824b871355b94ee8dc8d9169d88d10c68f3995db [gaim-migrate @ 9212] Actually, that sucks pretty hard ... fortunately there is a trivial fix for that. There may be bustage of old versions of automake, but it seems this was introduced when the autoconf syntax was changed, so it should only bust busted systems as best I can tell. (Removes version information redundancy in configure.ac) committer: Tailor Script diff -r 824b871355b9 -r dc07d60d1183 configure.ac --- a/configure.ac Sun Mar 21 05:38:20 2004 +0000 +++ b/configure.ac Sun Mar 21 06:18:55 2004 +0000 @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT(gaim, 0.76cvs, gaim-devel@lists.sourceforge.net) +AC_INIT([gaim], [0.76cvs], [gaim-devel@lists.sourceforge.net]) AM_CONFIG_HEADER(config.h) -AM_INIT_AUTOMAKE([gaim], [0.76cvs]) +AM_INIT_AUTOMAKE AC_PREREQ([2.50])