[Freeciv-Dev] (PR#40430) Bug: Incorrect check for libggz in 2.1.6

2008-08-12 Thread Roger Light
URL: http://bugs.freeciv.org/Ticket/Display.html?id=40430 I'm attempting to run configure in freeciv 2.1.6 with the following arguments: ./configure --disable-client --with-ggz-server --without-ggz-client This results in it trying to check for both libggz-0.0.14 and libggz-0.99.4, which seems

[Freeciv-Dev] (PR#40429) Bug: [EMAIL PROTECTED] doesn't work

2008-08-12 Thread Roger Light
URL: http://bugs.freeciv.org/Ticket/Display.html?id=40429 Hi, Sending emails to [EMAIL PROTECTED], which is the suggested method for guest users to report bugs, results in bounce messages from the mail server saying that the user [EMAIL PROTECTED] isn't found. Cheers, Roger

Re: [Freeciv-Dev] (PR#40426) [Patch] Base requirement

2008-08-12 Thread Marko Lindqvist
URL: http://bugs.freeciv.org/Ticket/Display.html?id=40426 2008/8/9 Marko Lindqvist [EMAIL PROTECTED]: This patch adds separate requirement type for military bases. - Corrected comment - ML diff -Nurd -X.diff_ignore freeciv/common/base.c freeciv/common/base.c --- freeciv/common/base.c

[Freeciv-Dev] (PR#40431) [Patch] SDL-client: Use get_base_by_gui_type()

2008-08-12 Thread Marko Lindqvist
URL: http://bugs.freeciv.org/Ticket/Display.html?id=40431 Use get_base_by_gui_type() instead of hardcoded base type index. - ML diff -Nurd -X.diff_ignore freeciv/client/gui-sdl/menu.c freeciv/client/gui-sdl/menu.c --- freeciv/client/gui-sdl/menu.c 2008-03-08 16:33:05.0 +0200

[Freeciv-Dev] (PR#40433) [Patch] Do not expand vision too far from cities

2008-08-12 Thread Marko Lindqvist
URL: http://bugs.freeciv.org/Ticket/Display.html?id=40433 Big cities see really far to the ocean. This is because vision range is set to at least same as border range. Probably the idea has been that area inside ones own borders should be visible, but this naive implementation is broken in

[Freeciv-Dev] (PR#40434) [Patch] Cleanup tile_activity_base_time()

2008-08-12 Thread Marko Lindqvist
URL: http://bugs.freeciv.org/Ticket/Display.html?id=40434 When old code is replaced with search and replace, resulting code can be amusing. Attached patch simplifies tile_activity_base_time() to trivial form. This also means one less direct reference to BASE_FORTRESS BASE_AIRBASE. - ML