[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Enigma-devel] A bug in autogen.sh script.
From: |
Daniel Heck |
Subject: |
Re: [Enigma-devel] A bug in autogen.sh script. |
Date: |
Mon, 24 Jan 2005 12:12:41 +0100 |
On Sat, 22 Jan 2005 12:29:11 +0100 Tadeusz Andrzej Kad³ubowski wrote:
> Bootstrapping ./lib-src/zipios++ OK
> Bootstrapping ./ configure.ac:112: error: possibly undefined macro:
> AS_HELP_STRING
> If this token and others are legitimate, please use m4_pattern_allow.
> See the Autoconf documentation.
> ERROR
>
> The autogen.sh script gave me a confiugre script, which apparently worked, and
> everything looked ok, but make failed reporting as follows:
You need a newer version of autoconf; version 2.59 works for me.
Somewhere between 2.57 and 2.59 AC_HELP_STRING was renamed to
AS_HELP_STRING (which Enigma uses)... don't you just love that...
> server.cc: In constructor `enigma_server::Msg_Command_find(const
> std::string&)::LowerCaseString::LowerCaseString(const std::string&)':
> server.cc:371: `tolower' undeclared (first use this function)
> server.cc:371: (Each undeclared identifier is reported only once for each
> function it appears in.)
> make[3]: *** [enigma-server.o] Error 1
I added the missing #include <cctype> to the source file.
Thanks!
Daniel