[Freeciv-Dev] Re: (PR#6146) autogen.sh fails at gettimeofday
[Top] [All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index] [Thread Index]
kenn@xxxxxxxxxxxxxx wrote:
> On Tue, 2003-09-16 at 08:08, Per I. Mathisen wrote:
>
>>This is strange. You are missing the two last new m4 function definitions.
>>These should be in the files m4/auth.m4 and m4/gettimeofday.m4. Do these
>>files exist? If not, try 'cvs up -d'.
>>
>
> It is strange... the files did not exist. They aren't in the CVS
> snapshots on http://www.freeciv.org/latest.html (checked Sep-08 and
> Sep-15). I got Freeciv using cvs instead and the auth/gettimeofday
> files were there. Works fine now.
Obviously this is a mistake in the distribution, which should be fixed.
But the distribution already has configure included (autogen.sh has
already been run), so it shouldn't be a fatal problem.
Untested patcha applied.
jason
Index: Makefile.am
===================================================================
RCS file: /home/freeciv/CVS/freeciv/Makefile.am,v
retrieving revision 1.32
diff -u -r1.32 Makefile.am
--- Makefile.am 2003/05/08 03:24:43 1.32
+++ Makefile.am 2003/09/17 13:56:33
@@ -65,10 +65,12 @@
debian/rules \
debian/watch \
m4/ac_path_lib.m4 \
- m4/locale.m4 \
+ m4/auth.m4 \
m4/debug.m4 \
m4/esd.m4 \
+ m4/freetype2.m4 \
m4/gettext.m4 \
+ m4/gettimeofday.m4 \
m4/glib-2.0.m4 \
m4/glib-gettext.m4 \
m4/glib.m4 \
@@ -81,13 +83,13 @@
m4/imlib.m4 \
m4/isc-posix.m4 \
m4/lcmessage.m4 \
+ m4/locale.m4 \
m4/ngettext.m4 \
m4/no-client.m4 \
m4/progtest.m4 \
m4/readline.m4 \
- m4/sdl.m4 \
- m4/freetype2.m4 \
m4/sdl-client.m4 \
+ m4/sdl.m4 \
m4/sound.m4 \
m4/vsnprintf.m4 \
m4/win32-client.m4 \
|
|