[Freeciv-Dev] Re: (PR#5118) CVS fails in autogen.sh
[Top] [All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index] [Thread Index]
jorneg@xxxxxxxxxxx wrote:
>jorneg@jordi:~/freeciv/freeciv-cvs-Aug-14 > ./autogen.sh --disable-nls
>--enable-debug=yes
>! nls checks disabled
>+ checking for autoconf >= 2.52 ... found 2.13, not ok !
>+ checking for autoconf >= 2.13 ... found 2.13, ok.
>+ checking for automake >= 1.4 ... found 1.4, ok.
>+ creating acinclude.m4
>+ running aclocal ...
>+ running autoheader ...
>+ running autoconf ...
>+ generating automake files...
>+ running automake ...
>server/Makefile.am:79: variable `USER_DB_LIB' not defined
>
>automake failed
>
>
I had same problem with automake 1.4, updating to automake 1.5
corrected this. Attached patch makes automake version 1.5 minimum. See
also my last night mail about automake version detection.
Currently autogen.sh fails for me at configure phase:
checking for working gettimeofday... ./configure: line 15150: syntax
error near unexpected token `FC_CHECK_GETTIMEOFDAY_RUNTIME(,'
./configure: line 15150: ` FC_CHECK_GETTIMEOFDAY_RUNTIME(,'
It seeems that autogen.sh generates acinclude.m4 without including
FC_CHECK_GETTIMEOFDAY_RUNTIME in it.
- Caz
diff autogen.sh autogen.sh
--- autogen.sh Sun Aug 17 12:31:40 2003
+++ autogen.sh Sun Aug 17 12:35:56 2003
@@ -144,7 +144,7 @@
version_check 1 "autoconf" "ftp://ftp.gnu.org/pub/gnu/autoconf/" 2 13 ||
DIE=1
fi
-version_check 1 "automake" "ftp://ftp.gnu.org/pub/gnu/automake/" 1 4 || DIE=1
+version_check 1 "automake" "ftp://ftp.gnu.org/pub/gnu/automake/" 1 5 || DIE=1
if [ "$FC_USE_NLS" = "yes" ]; then
DIE2=0
version_check 1 "xgettext" "ftp://ftp.gnu.org/pub/gnu/gettext/" 0 10 36 ||
DIE2=1
|
|