From: Richard Kreckel Date: Mon, 13 Sep 2010 20:39:05 +0000 (+0200) Subject: Fix autoconf warning about AC_INIT use. X-Git-Tag: release_1-6-0~18^2~1^2~9 X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=commitdiff_plain;h=db47e259edabbed2b8eb2fa1e4ed93588c26e304;hp=cc94094751459129e1392a93dfa0264adac789a5;ds=sidebyside Fix autoconf warning about AC_INIT use. Apparently, autoconf doesn't like the angle brackets in the bug-report argument any more. It comlains "not a literal: ". So let's remove it. And while at it, also provide tarname and url arguments. --- diff --git a/configure.ac b/configure.ac index 248cfa3d..21795f4c 100644 --- a/configure.ac +++ b/configure.ac @@ -26,7 +26,7 @@ dnl of leftover numbers. Not something we need to worry about yet. ;-) m4_define([ginac_lt_current], [2]) m4_define([ginac_lt_revision], [0]) -AC_INIT([GiNaC], ginac_version, []) +AC_INIT([GiNaC], ginac_version, [ginac-list@ginac.de], [ginac], [http://www.ginac.de/]) AC_PREREQ(2.59) AC_CONFIG_SRCDIR(ginac/basic.cpp) AC_CONFIG_AUX_DIR([config])