Author: cazfi
Date: Mon Oct 19 20:38:57 2015
New Revision: 30141

URL: http://svn.gna.org/viewcvs/freeciv?rev=30141&view=rev
Log:
Use five parameter version of AC_INIT() to provide more project information.

See patch #6441

Modified:
    trunk/configure.ac

Modified: trunk/configure.ac
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/configure.ac?rev=30141&r1=30140&r2=30141&view=diff
==============================================================================
--- trunk/configure.ac  (original)
+++ trunk/configure.ac  Mon Oct 19 20:38:57 2015
@@ -1,9 +1,12 @@
 dnl configure.ac for freeciv
 dnl Process this file with autoconf to produce a configure script.
 
+AC_INIT([Freeciv], m4_esyscmd([./fc_version | tr -d '\n']),
+        [http://gna.org/projects/freeciv/],
+        [freeciv], [http://www.freeciv.org/])
+AC_PREREQ(2.64)
+
 dnl Initialize with some random file to ensure the source is here.
-AC_INIT([freeciv], m4_esyscmd([./fc_version | tr -d '\n']))
-AC_PREREQ(2.64)
 AC_CONFIG_SRCDIR([common/game.c])
 AC_CONFIG_AUX_DIR(bootstrap) # This can't be quoted or automake will fail
 AC_CONFIG_MACRO_DIR([m4])
@@ -13,7 +16,7 @@
 AC_USE_SYSTEM_EXTENSIONS
 AC_C_BIGENDIAN
 
-BUG_URL="http://gna.org/projects/freeciv/";
+BUG_URL="$PACKAGE_BUGREPORT"
 WIKI_URL="http://www.freeciv.org/";
 MAIL_ADDRESS="freeciv-dev AT gna.org"
 


_______________________________________________
Freeciv-commits mailing list
Freeciv-commits@gna.org
https://mail.gna.org/listinfo/freeciv-commits

Reply via email to