--- crossfire/random_maps ---


Protocol:pserver User:anonymous
Machine:crossfire.cvs.sourceforge.net CVSROOT:/cvsroot/crossfire

Filename: Makefile.in
Revision 1.32quinet 2006/08/25 16:28:00 +10 -6
configure, aclocal.m4, utils/config.guess, utils/config.sub,
utils/ltmain.sh, include/autoconf.h.in, */Makefile.in: regenerated using
slightly newer versions of libtoolize, aclocal, automake and autoconf.
Show difference between Revision 1.31 and 1.32
Revision 1.31tchize 2006/06/01 14:07:08 +3 -1

Fixed error in build process regarding unit test.
Our modularization is way broken, with have intredependent .a files, this should be solved.
Applied a compilation workaround suggest by gnu, twice every .a at link time. Applied an automake
workaround as we need to pass --preserver-dup-deps to autotools and to do this only current CVS
version can do it without a bit i hacking. Applied Hacking suggested by automake mailing list.
Show difference between Revision 1.30 and 1.31
Revision 1.30ryo_saeba 2006/05/05 04:41:15 +1 -3
Second part of patch #1453869 courtesy Stefan Huehner (shuehner)
Show difference between Revision 1.29 and 1.30
Revision 1.29tchize 2006/05/03 16:50:24 +6 -0


Added autogeneration of html and text report for test process.
Show difference between Revision 1.28 and 1.29
Revision 1.28tchize 2006/03/22 17:06:47 +1 -0

updated configure.ac to automatically check availability of a few headers required by crossedit
Basically, it tries to compile a test code having only includes of xaw, posix, etc. Should be
enough to prevent most crossedit compilation issue but not perfect. (Should check version of lib and
try a few methods on them). crossedit/ and test/unit/crossedit are skipped by make if test fail.
Show difference between Revision 1.27 and 1.28
Revision 1.27tchize 2006/03/21 16:46:06 +4 -0

Initial commit of unit tests (see doc/Developers/testplans)
This is it, initial commit of unit test framework. It contains empty testcases
for all unit tests. See test/unit/check_shstr.c for a completed example unit test :)
Show difference between Revision 1.26 and 1.27
Revision 1.26akirschbaum 2005/07/16 13:13:53 +2 -2
*Makefile.in, aclocal.m4, configure: Rebuilt generated files.
Show difference between Revision 1.25 and 1.26
Revision 1.25mwedel 2005/07/08 20:03:42 +6 -3
configure.ac, configure, aclocal.m4, */Makefile.in: Add AM_MAINTAINER_MODE
macro to configure.ac - this should hopefully supress auto regeneration of
makefiles.in
MSW 2005-07-08
Show difference between Revision 1.24 and 1.25
Revision 1.24mwedel 2005/07/08 19:03:09 +247 -166
Commit updated makefiles so files these depend on have been updated
(aclocal/include).
MSW 2005-07-08
Show difference between Revision 1.23 and 1.24
Revision 1.23tchize 2005/05/06 16:10:17 +166 -247

added a new command to identify the type of text send to client.
media tags can be included inside them. Those text types include
scrolls, books, message of the day, signs, aso.
See protocol doc for details
Show difference between Revision 1.22 and 1.23
Revision 1.22mwedel 2005/04/14 01:57:01 +6 -7
Random map code improvements - add support for subdirectories in the
style maps for random maps. Add difficulty_increase parameter for random
maps to control how fast they get harder.
doc/Developers/random-maps: Add notes about difficulty_increase parameter.
random_maps/Makefile.am: Update proto directive to use cproto, not cextract.
random_maps/random_map.c: Update to use difficulty_increase when figuring
difficulty of maps. Add code to save it in list of parameters.
random_maps/random_map.h: Add difficulty_increase field to structure.
random_maps/reader.l, reader.c: Add code to find difficulty_increase parameter.
random_maps/rproto.h: rebuilt.
random_maps/special.c: Pass in difficulty increase to
write_parameters_to_string()
random_maps/style.c: Remove old scandir - replaced by our own load_dir() -
necessary because we need to check type of files, which scandir doesn't
easily let us do. Since it is now our own routine, just return
array of file names instead of dirent structures.
MSW 2005-04-13
Show difference between Revision 1.21 and 1.22
Revision 1.21akirschbaum 2005/03/09 13:17:55 +252 -165
*Makefile.in, aclocal.m4, configure, utils/config.guess, utils/config.sub,
utils/ltmain.sh: Rebuild generated files.
Show difference between Revision 1.20 and 1.21
Revision 1.20mwedel 2004/01/21 02:13:32 +287 -259
Rebuilt with up to date aclocal/automake/autoconf so that they all work
properly.
MSW 2004-01-20
Show difference between Revision 1.19 and 1.20
Revision 1.19tchize 2004/01/18 04:51:05 +259 -287


Rebuilded Makefile.in using autogen.sh because of recent add of a file in server/
Also rebuilded loader.c for linux because loader.l was modified by a windows developper.
Show difference between Revision 1.18 and 1.19
Revision 1.18mwedel 2003/10/01 01:55:17 +1 -0
utils/player_dl.html utils/player_dl.pl.in: New files - scripts for allowing
character directories to be downloaded over the web.
configure.ac: Add check for 'tar', so that we can put it in the script above.
Makefile.in (All of them): Changed because TAR variable propogated to them.
MSW 2003-09-30
Show difference between Revision 1.17 and 1.18
Revision 1.17mwedel 2003/09/23 00:21:28 +60 -138
Add conditional compilation to the stop level Makefile.am so that it
only tries to compile crossedit if we have X libraries. Also, rebuild
the files with older version of aclocal/autoheader/automake, so it
shouldn't have as many troubles with some peoples systems.
MSW 2003-09-22
Show difference between Revision 1.16 and 1.17
Revision 1.16tchize 2003/06/19 05:59:33 +138 -60

Added support for smoothing to the client.
This will allow (i hope) better graphical results while using very
little bandwidth overhead.
Changes done follows:
- Added protocol command MapExtendedInfos and smooth commands to server
- Added a SetUp paramater in protocol for activating smoothing
(disabled by default) or more general Extended map infos
- Added file lib/smooth a text file containing some smoothing info a
client might ask the server about.
- Changed loader.l to be able to mark an object as 'smoothed' in
archetypes (the smoothlevel parameter) and rebuild loader.c
accordingly
- Changed lib/Makefile.am to install lib/smooth file in shared folder
- Rebuild the Makefiles.am and the Configure script (using autogen.sh)

To be able to smooth, A client commit (the common part+ the gtk part)
will follow and an archetypes commit will also follow.

I will also detail changes to the protocol within a few days
Server has been tested with older client to check backward compatibility
Show difference between Revision 1.15 and 1.16
Revision 1.15mwedel 2003/02/25 01:18:07 +60 -138
*/Makefile.in, related files: Updated for 1.5.0
server/attack.c: Don't change weak wall image if no damage was actually done.
server/c_object.c: Include math.h - needed for pow()
server/spell_effect.c: fix infinite loop in town_portal
MSW 2003-02-24
Show difference between Revision 1.14 and 1.15
Revision 1.14tchize 2002/12/31 07:36:49 +138 -60

Added crossfire-config to the build list of the configure.ac and regenerated the Makefiles and
configure.in to handle it
Show difference between Revision 1.13 and 1.14
Revision 1.13mwedel 2002/09/07 17:08:07 +439 -75
Automake patch - all files.
The changes for the source files is using confdir instead of
datadir.
Patch by Jacek Konieczny (jajcus@bnet.pl), applied by Mark Wedel,
2002-09-07.
Show difference between Revision 1.12 and 1.13
Revision 1.12mwedel 2002/06/07 02:26:43 +3 -1
Add ranlib to the archive - some OS's need it.
MSW 2002-06-06
Show difference between Revision 1.11 and 1.12
Revision 1.11mwedel 2001/12/15 21:31:03 +1 -1
common/object.c random_maps/Makefile.in
server/c_wiz.c server/player.c server/plugins.c server/timers.c
socket/request.c: Most of the changes are to just fix compiling warnings
or errors so that it compiles on sparc solaris with the workshop
compiler (things like }; should just be }). Declaration for alphasort
was missing in plugins.c. random_maps/Makefile.in had the wrong order in
linking - the system library needs to be linked in after the crossfire
libraries.
crossedit/App.c: Fix for running on 8 bit color - colormap was not being
initialized to usuable default value.
crossedit/xutil.c: Broken code when duplicating faces for undefined
images. That code should never really be used, as pixmaps currently
are always contiguous.
MSW 2001-12-15
Show difference between Revision 1.10 and 1.11
Revision 1.10mwedel 2001/08/02 01:35:36 +1 -1
Fix up so that distclean now clears out all appropriate files - MSW 2001-08-01
Show difference between Revision 1.9 and 1.10
Revision 1.9mwedel 2001/05/12 19:13:44 +1 -1
add expand2x.h to list of files in Makefile.in MSW 2001-05-12
Show difference between Revision 1.8 and 1.9
Revision 1.8mardahl 2001/05/09 17:35:24 +1 -1
Fix typo.
Show difference between Revision 1.7 and 1.8
Revision 1.7mardahl 2001/05/04 17:10:04 +2 -1
PeterM:
FIX: dangling doors in rogue_layout
CLEANUP: don't need RP for maze_gen (touches maze_gen.c, maze_gen.h
random_map.c, rproto.h
ADDED BUT NOT ACTIVATED: code from H. S. Teoh to 2x size corridors
in generic layouts.
Show difference between Revision 1.6 and 1.7
Revision 1.6peterm 2001/02/11 02:17:06 +2 -1
Added a square spiral type of layout.
Show difference between Revision 1.5 and 1.6
Revision 1.5peterm 2001/02/08 23:00:48 +2 -1
Added a snake-like layout. With no symmetry, it's just a progression
back-and-forth.
Show difference between Revision 1.4 and 1.5
Revision 1.4peterm 2001/01/16 02:20:53 +2 -1
Installed nethack-style maps
Show difference between Revision 1.3 and 1.4
Revision 1.3peterm 2000/12/15 04:06:06 +1 -0
Implemented a new sort of random map: the spiral.
Show difference between Revision 1.2 and 1.3
Revision 1.2mids 2000/11/25 16:09:29 +3 -0
Added the option "make distclean" in all the Makefile.in
Show difference between Revision 1.1 and 1.2
Revision 1.1uid200 1999/04/02 13:10:03 None
Initial revision
First version
Revision 1.1.1.1uid200 1999/04/02 13:10:03 +0 -0
First CVS revsion: crossfire-0.95.3
Show difference between Revision 1.1 and 1.1.1.1


File made using version 1.98 of cvs2html by leaf at 2011-07-21 17:54