Complete.Org: Mailing Lists: Archives: freeciv-dev: March 2000:
[Freeciv-Dev] So it's _not_ me -- filed as Bug #283
Home

[Freeciv-Dev] So it's _not_ me -- filed as Bug #283

[Top] [All Lists]

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index] [Thread Index]
To: freeciv-dev@xxxxxxxxxxx
Subject: [Freeciv-Dev] So it's _not_ me -- filed as Bug #283
From: "jrb3@xxxxxxxx (Joseph Beckenbach III, CCP)" <jrb3@xxxxxxxx>
Date: Tue, 29 Feb 2000 22:44:23 -0800
Reply-to: jrb3@xxxxxxxxx

        Just looked at the autoconf versions used for the BeOS port.  No
wonder I'm getting trouble -- aclocal.m4 is NOT valid for autoconf-2.12!
Either require 2.13, or get that third argument off the lines that define
PACKAGE and VERSION.  2.12 accepts one or two arguments;  if there are three,
PACKAGE and VERSION are defined to be 1, not strings, which breaks compiles.
Alternative pseudo-patches provided.  I prefer the aclocal.m4 patch myself.

====
diff -r1.91 configure.in
10c10
< AC_PREREQ(2.12)
---
> AC_PREREQ(2.13)
====

====
diff -r1.12 aclocal.m4
476,477c476,477
< AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
< AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package]))
---
> AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
> AC_DEFINE_UNQUOTED(VERSION, "$VERSION"))
====

                Joseph Beckenbach



[Prev in Thread] Current Thread [Next in Thread]
  • [Freeciv-Dev] So it's _not_ me -- filed as Bug #283, jrb3@xxxxxxxx (Joseph Beckenbach III, CCP) <=