March 2005 Commit Log

Number of Commits:
103
Number of Active Developers:
8
akirschbaum 2005-03-30 14:22 Rev.: 3183

Make the test for admission to the guild work again.

13 lines of code changed in 1 file:

mwedel 2005-03-28 02:20 Rev.: 3182

socket/image.c: Change esrv_send_face to check for <=0 instead of <0 on face
number.
socket/request.c: Change if statement that acted improperly to determine when
to send faces.
MSW 2005-03-27

8 lines of code changed in 3 files:

mwedel 2005-03-28 01:44 Rev.: 3181

Various minor bugfixes:
configure.in, configure: Add warning message if we can't find gtk+ 2.0 or
later, but continue configure process instead of exiting.
common/misc.c: Fix code so that it compiles with older C compilers.
gtk-v2/src/map.c: Change code on need_recenter_map() - use MAX_MAP_OFFSET
instead of hard coded value of 2 - found a crash here when running
around the world map - could have been caused by a big image and/or
the fact my character moved 2 spaces in one tick. either way, this
change shouldn't impact things, as it is seldom the virtual map needs
to be recentered.
MSW 2005-03-27

28 lines of code changed in 5 files:

akirschbaum 2005-03-27 15:51 Rev.: 3180

This patch fixes a few memory leaks related to image caching in all clients.
common/image.c: Declare facetoname[] as static. Add all code accessing this
array. Print warning if image cannot be created.
gtk/gx11.c, gtk/image.c, gtk-v2/src/image.c, x11/x11.c, x11/xutil.c: Remove
code accessing facetoname[].
gtk/gx11.c, gtk-v2/src/main5H.c, x11/x11.c: Always call init_cache_data() to
initialize pixmaps[] array.
gtk/image.c, gtk-v2/src/image.c, x11/png.c: Reject invalid face
numbers and fix resource leak in create_and_rescale_image_from_data().
gtk/image.c, gtk-v2/src/image.c, get_map_image_size: Pretend invalid faces to
be of size 1x1 in get_map_image_size().
gtk-v2/src/image.c: Properly free opengl resources in free_pixmap(). Fix
resource leak when freeing old pixmaps in reset_image_data().
x11/png.c: Properly free resources if an error occurs.
x11/x11.c: Ignore invalid face numbers.
x11/x11.h Remove duplicate definition of MAXPIXMAPNUM and facetoname[].
x11/xutil.c: Initialize size of pixmaps[0].

94 lines of code changed in 10 files:

akirschbaum 2005-03-26 14:19 Rev.: 3179

gtk-v2/src/map.c: Fix typo to make it compile without opengl.

4 lines of code changed in 2 files:

cavesomething 2005-03-25 02:53 Rev.: 3178

fix for bug #1170280

1 lines of code changed in 1 file:

cavesomething 2005-03-24 17:35 Rev.: 3177

minor fix to remove compile error on old compilers

2 lines of code changed in 1 file:

majorwoo 2005-03-24 16:53 Rev.: 3176

Increased length of time marker lasts for teams in teamwar

3 lines of code changed in 1 file:

tchize 2005-03-24 16:07 Rev.: 3175


Modified lots of call to GET_MAP_OB not checking for null

43 lines of code changed in 1 file:

tchize 2005-03-23 17:19 Rev.: 3174


Fixed smoothing on non floor layer.

13 lines of code changed in 6 files:

cavesomething 2005-03-23 16:35 Rev.: 3173

allow who command to take regions as arguments, if a region is given as an argument then only the players in the region are shown. Partial region names can be used also. Calling who on its own shows everyone that was shown before.

160 lines of code changed in 6 files:

cavesomething 2005-03-23 16:02 Rev.: 3172

region updates for some maps in navar and brest

7 lines of code changed in 7 files:

ryo_saeba 2005-03-22 18:22 Rev.: 3171

Fix broken win32 compilation. Remove sleep(1) in hide commandas that causes the whole server to sleep

20 lines of code changed in 4 files:

akirschbaum 2005-03-22 16:44 Rev.: 3170

common/living.c: Allow luck to drop back to zero. Limit bad luck object to
+/-100 to prevent overflows.

15 lines of code changed in 2 files:

majorwoo 2005-03-22 16:02 Rev.: 3169

Updates to the teamwar map, moved team registration to a new map, added spectator area

2879 lines of code changed in 2 files:

mwedel 2005-03-22 02:28 Rev.: 3168

Update Makefile.in so that it will install the regions file.
MSW 2005-03-21

3 lines of code changed in 1 file:

mwedel 2005-03-22 02:23 Rev.: 3167

Main change of this is addition of opengl drawing for the map in the gtk-v2
client. On my system, the opengl code is about 10 times faster than the
sdl code was, making it so I can turn on all the bells and whistles (smoothing,
best lighting) and still use less than 10% cpu time. As part of this, I
redid the smoothing logic, so the client now requires a new server for
smoothing to work (needs push logic, as client won't request smoothing
info as that adds a lot of complication). This change was done because
the old smoothing code wasn't that efficient - now, we store the smoothing
face along with the face it smooths, so finding the smoothing info is
much faster.
--
configure.in, configure: Add check for -lglut - indication we have opengl
libraries available.
common/client.h: Remove Smooths struct. Change CONFIG_SDL to
CONFIG_DISPLAY, and add CFG_DM_... to denote different display modes,
since there is more than just sdl and not sdl now.
common/commands.c: Don't have SmoothCmd try to update what spaces need
to be redrawn - for opengl, it doesn't care about that, and for
most other maps, it will figure it out when it needs to redraw
anyways.
common/config.h.in: Addition of HAVE_OPENGL line.
common/image.c: Remove getsmooth() - rely on push logic.
common/init.c: Update want_config[CONFIG_SDL] to
want_config[CONFIG_DISPLAYMODE]
gtk/config.c: Change access to CONFIG_DISPLAYMODE
gtk/gx11.c: Change access to CONFIG_DISPLAYMODE. Add -smooth command line
option.
gtk/gx11.h: Add smooth_face to PixmapInfo struct.
gtk/image.c: Change access to CONFIG_DISPLAYMODE. When getting new
PixmapInfo struct, use calloc so we are sure all fields are initialized
to zero. Add addsmooth().
gtk/map.c: Change access to CONFIG_DISPLAYMODE. Change how we access
smooth face info.
gtk/sdl.c: Change how we access smooth face info.
gtk-v2/src/Makefile.am, gtk-v2/src/Makefile.in: Add addition of OPENGL_LIBS
to link libs. Add opengl.c file.
gtk-v2/src/config.c: Add image.h include.
gtk-v2/src/gtk2proto.h: Rebuilt.
gtk-v2/src/image.c: Change access to CONFIG_DISPLAYMODE. Add hooks for
opengl image generation. Change call for pixmap creation from malloc
to calloc. Add addsmooth().
gtk-v2/src/image.h. If we have opengl, include GL/gl.h. Add fields
for opengl texture maps.
gtk-v2/src/info.c: Update so text line wraps if it is too long.
gtk-v2/src/inventory.c: Add checks to make sure object face is
valid before trying to draw. In icon mode, add code to cleanup
old fields (if you drop an item, it wouldn't erase the list item
in the list). Also, free callbacks, as they effectively stack,
and we were using incorrect object pointers (pointer from first
callback, which didn't match current one).
gtk-v2/src/keys.c: Add image.h to includes.
gtk-v2/src/main.c: Add image.h to includes. Change access to
CONFIG_DISPLAYMODE. Add -opengl command switch. Remove
+sdl and popups command line options. Relocate setup of
cache call setup to after we know all windows have been created.
gtk-v2/src/map.c: Change access to CONFIG_DISPLAYMODE. Add opengl
drawing hooks. Change access for smooth info. Implement
button press code for map window (basically grabbed from
gtk/map.c)
gtk-v2/src/opengl.c: New file containing opengl draw code.
gtk-v2/src/png.c: Remove some unused code resulting in compile warnings.
gtk-v2/src/sdl.c: Remove some commented out code. Change access method
for smoothing code.
x11/xutil.c: Change access to CONFIG_DISPLAYMODE. Add addsmooth()
function.
MSW 2005-03-20

2264 lines of code changed in 29 files:

majorwoo 2005-03-21 22:15 Rev.: 3166

Allow a player to hide if standing near a hidden dm. #1119594

7 lines of code changed in 1 file:

majorwoo 2005-03-21 21:39 Rev.: 3165

Updated who to sort case insensitive and prevent the occasional printing of garbage characters

13 lines of code changed in 1 file:

majorwoo 2005-03-21 20:54 Rev.: 3164

Add's a slight pause to dm's using the hide command to make it look more realistic.

8 lines of code changed in 1 file:

majorwoo 2005-03-21 14:29 Rev.: 3163

Corrected firevolcano region entry

1 lines of code changed in 1 file:

majorwoo 2005-03-21 12:48 Rev.: 3162

Defining a region for teamwar maps

6 lines of code changed in 1 file:

majorwoo 2005-03-21 00:59 Rev.: 3161

Moved to a real map, instead of a DM only after final testing.

3 lines of code changed in 1 file:

majorwoo 2005-03-21 00:49 Rev.: 3160

Correct teleport on teamwar map.

4 lines of code changed in 1 file:

mwedel 2005-03-21 00:08 Rev.: 3159

fix typo on magicmap color.
MSW 2005-03-20

1 lines of code changed in 1 file:

majorwoo 2005-03-20 21:59 Rev.: 3158

New Brest look from mikeeusa

2464 lines of code changed in 2 files:

majorwoo 2005-03-20 21:46 Rev.: 3157

Brest arches and chalices from mikee part2

0 lines of code changed in 45 files:

majorwoo 2005-03-20 21:29 Rev.: 3156

Brest arches and other misc from mikee part 1

413 lines of code changed in 16 files:

majorwoo 2005-03-20 17:35 Rev.: 3155

This is the new teamwar map, and modified world map with the entrance

11826 lines of code changed in 2 files:

majorwoo 2005-03-20 17:26 Rev.: 3154

This is patch #1166750 to allow a battleground tile to send a player who dies to maxhp,maxsp or hp,mp based on a matching force=slaying

17 lines of code changed in 2 files:

majorwoo 2005-03-20 17:23 Rev.: 3153

This is path #1165501 to sort the who command by character name. Also some formatting for the DM who that was broken in #1152538

47 lines of code changed in 2 files:

majorwoo 2005-03-20 17:20 Rev.: 3152

This is patch #1152538 to add a server configurable who command

142 lines of code changed in 6 files:

akirschbaum 2005-03-20 11:32 Rev.: 3151

common/living.c: When randomly adjusting luck, change both op->stats.luck and
the applied bad_luck object.

7 lines of code changed in 2 files:

akirschbaum 2005-03-20 11:20 Rev.: 3150

server/attack.c: Do not decrease luck if a player kills himself with a spell
or pet.

6 lines of code changed in 2 files:

mwedel 2005-03-20 01:22 Rev.: 3149

server/c_wiz.c: change command_free() and command_remove() to always
process the head of the object - doing this operations on the non head
will typically always cause problems.
MSW 2005-03-19

10 lines of code changed in 2 files:

mwedel 2005-03-19 04:14 Rev.: 3148

This change makes it so that the smoothing information is pushed to the client
(if the client is using smoothing) instead of a process were we tell the
client the smoothlevel and the client then has to request the face info for
smoothing. If we know the client wants the info, much easier to push it to
the client. This simplifies the client code (doesn't have to keep track
of what is requests). It also fixes the 'problem' that when you join the
game, you get a few frames with no smoothing and then the smoothing shows
up, which seems a bit odd. My testing shows that old clients that want
smoothing use this new logic withouth any problems.
--
common/image.c: add smooth_face default so that we don't have to look it
up everytime.
include/define.h: Add SMOOTH_FACE_NAME used by image.c
include/global.h: Add smooth_face extern declaration.
include/newserver.h: Update comment on what faces_sent is used for,
add NS_FACESENT_* values which determines what info for the face was
sent.
socket/image.c, socket/init.c, socket/item.c: Update faces_sent checks/set
to check against NS_FACESENT bitmask.
socket/request.c: Update faces_sent as mentioned above. And SendSmooth(),
rewrite AskSmooth() to use SendSmooth(). Modify update_smooth()
to send smoothing information to the client.
MSW 2005-03-19

100 lines of code changed in 9 files:

mwedel 2005-03-19 04:10 Rev.: 3147

rebuild file so that it includes region.c in its compilation.
MSW 2005-03-19

7 lines of code changed in 1 file:

mwedel 2005-03-19 03:35 Rev.: 3146

common/map.c: Clean up if statement ins blocked_link() which caused warning
messages - broke it apart to make it a little clear. Add check for
premature end of map header - make code more resilent in case of truncated
saved maps. Fix saving of region name in new_save_map() - saving the
pointer to the region isn't what the loader is expecting, and is highly
non portable even if it was.
MSW 2005-03-18

26 lines of code changed in 2 files:

akirschbaum 2005-03-17 13:20 Rev.: 3145

Fix exit destination.

2 lines of code changed in 1 file:

akirschbaum 2005-03-16 16:39 Rev.: 3144

Fix spelling errors.

5 lines of code changed in 1 file:

ryo_saeba 2005-03-15 17:16 Rev.: 3143

Add missing file

0 lines of code changed in 1 file:

ryo_saeba 2005-03-15 16:44 Rev.: 3142

Applied patch #1145089 (cavesomething) to add region support

0 lines of code changed in 1152 files:

ryo_saeba 2005-03-15 16:42 Rev.: 3141

Add regions documentation

7 lines of code changed in 1 file:

ryo_saeba 2005-03-15 16:06 Rev.: 3140

Apply patch #1145089 by cavesomething for region support

563 lines of code changed in 17 files:

akirschbaum 2005-03-14 14:17 Rev.: 3139

Add missing floor tile.

4 lines of code changed in 1 file:

akirschbaum 2005-03-14 14:07 Rev.: 3138

Add missing floor tiles.

12 lines of code changed in 1 file:

temitchell 2005-03-14 00:24 Rev.: 3137

removing mlab from scorn (upstream has moved to Navar)

0 lines of code changed in 1 file:

temitchell 2005-03-13 20:20 Rev.: 3136

- oops make apartment unique exit

1 lines of code changed in 1 file:

temitchell 2005-03-13 20:15 Rev.: 3135

- add perm apartment for Navar (thanks to techolous)

0 lines of code changed in 4 files:

temitchell 2005-03-13 17:32 Rev.: 3134

add private apartment exit to Navar maps (but not apartment maps yet)
move exits for two dungeons
add buildshop
Change requires updated arches as of 2005/03/13

3921 lines of code changed in 5 files:

temitchell 2005-03-13 17:16 Rev.: 3133

merge/fix images on rl_house3, add western style apartment house

91 lines of code changed in 5 files:

temitchell 2005-03-13 16:00 Rev.: 3132

add western style large house

0 lines of code changed in 2 files:

ryo_saeba 2005-03-13 11:44 Rev.: 3131

Add experimental W95/98 detection, with warning about client issues.

109 lines of code changed in 1 file:

akirschbaum 2005-03-13 11:02 Rev.: 3130

Fix exit destination.

3 lines of code changed in 2 files:

ryo_saeba 2005-03-13 11:01 Rev.: 3129

Add eastern wall courtesy Mikeeusa

0 lines of code changed in 20 files:

ryo_saeba 2005-03-13 10:54 Rev.: 3128

Windows 1.7.0 release.

11 lines of code changed in 3 files:

ryo_saeba 2005-03-13 10:48 Rev.: 3127

Apply patch #1119762 (salathar): afk command

35 lines of code changed in 6 files:

ryo_saeba 2005-03-13 10:18 Rev.: 3126

Apply patch #1161817: magic devices pickup flag

11 lines of code changed in 2 files:

ryo_saeba 2005-03-13 10:13 Rev.: 3125

Apply patches #1119366 and #1161816

35 lines of code changed in 4 files:

temitchell 2005-03-12 22:58 Rev.: 3124

Patch in elevation from origiunal bigworld maps - fix mountains
(wasteland -> mountain5)

21238 lines of code changed in 9 files:

temitchell 2005-03-12 04:50 Rev.: 3123

Move Pirate Den to Wolfsburg

158 lines of code changed in 3 files:

akirschbaum 2005-03-09 19:10 Rev.: 3122

Fix exit destinations back into world map.

84 lines of code changed in 18 files:

akirschbaum 2005-03-09 17:24 Rev.: 3121

Fix deposit option.

1 lines of code changed in 1 file:

akirschbaum 2005-03-09 17:16 Rev.: 3120

Fix spelling error; remove surplus @match from messages.

1 lines of code changed in 1 file:

akirschbaum 2005-03-09 16:50 Rev.: 3119

Fix spelling error.

5 lines of code changed in 2 files:

akirschbaum 2005-03-09 16:44 Rev.: 3118

Fix exit destination back into world map.

1 lines of code changed in 1 file:

akirschbaum 2005-03-09 16:36 Rev.: 3117

Use correct name in book.

1 lines of code changed in 1 file:

ryo_saeba 2005-03-09 16:20 Rev.: 3116

Tweak comments for doxygen

31 lines of code changed in 1 file:

akirschbaum 2005-03-09 16:17 Rev.: 3115

Fix spelling error.

1 lines of code changed in 1 file:

akirschbaum 2005-03-09 15:42 Rev.: 3114

Remove surplus dot from end of key name.

1 lines of code changed in 1 file:

akirschbaum 2005-03-09 15:39 Rev.: 3113

Fix spelling errors.

9 lines of code changed in 1 file:

akirschbaum 2005-03-09 15:23 Rev.: 3112

Remove shop tile atop wall.

0 lines of code changed in 1 file:

akirschbaum 2005-03-09 15:20 Rev.: 3111

Fix spelling error.

34 lines of code changed in 2 files:

akirschbaum 2005-03-09 15:12 Rev.: 3110

Fix spelling error.

1 lines of code changed in 1 file:

akirschbaum 2005-03-09 14:17 Rev.: 3109

*Makefile.in, aclocal.m4, configure, utils/config.guess, utils/config.sub,
utils/ltmain.sh: Rebuild generated files.

26034 lines of code changed in 29 files:

akirschbaum 2005-03-09 13:59 Rev.: 3108

acinclude.m4: Check whether Python supports the "L" format specifier. Do not
build python plugin if not.

56 lines of code changed in 2 files:

elsbernd 2005-03-08 07:58 Rev.: 3107

Load can modify self->w only, if self->w was created, which is not alwas the case

2 lines of code changed in 1 file:

mwedel 2005-03-08 02:18 Rev.: 3106

More improvements for the gtkv2 client, mostly adding SDL support:
gtk-v2/TODO: updated
gtk-v2/src/logfile: Removed - don't need dmalloc logfile.
gtk-v2/src/Makefile.am, gtk-v2/src/Makefile.in: Change program name from
'gtk-v2' to 'gcfclient2'. Add sdl.c to list of files.
gtk-v2/src/gtk2proto.h: Rebuilt
gtk-v2/src/inventory.c: Fix bug in show_nonmagical() (which corresponds
to inventory tab) - was showing unpaid objects, not nonmagical objects.
gtk-v2/src/main.c: Remove time_map_redraw declaration from function, since
it is declared in map.c. Change map logic to draw when we finish processing
network data. Change client naem as it reports itself to server to GTK2
... Client.
gtk-v2/src/map.c: Add map_updated variable which is set by display_map_doneupdate -
used by map draw function to know if anything has changed. Clean up some
formatting, remove unused code.
gtk-v2/src/sdl.c: New file containing sdl support.
MSW 2005-03-07

1196 lines of code changed in 9 files:

ryo_saeba 2005-03-07 16:52 Rev.: 3105

Commit changes by Mikeeusa

5572 lines of code changed in 6 files:

ryo_saeba 2005-03-07 16:36 Rev.: 3104

Violin courtesy Mikeeusa

0 lines of code changed in 15 files:

akirschbaum 2005-03-06 16:42 Rev.: 3103

Fix spelling error.

3 lines of code changed in 2 files:

akirschbaum 2005-03-06 16:39 Rev.: 3102

Fix spelling errors.

8 lines of code changed in 1 file:

akirschbaum 2005-03-06 16:29 Rev.: 3101

Fix spelling error.

5 lines of code changed in 4 files:

akirschbaum 2005-03-06 16:21 Rev.: 3100

Add missing msg/endmsg tags.

2 lines of code changed in 1 file:

akirschbaum 2005-03-06 15:38 Rev.: 3099

common/{map.c, readable.c, treasure.c}, crossedit/Attr.c, server/{apply.c,
attack.c, c_wiz.c, init.c, monster.c, pets.c, shop.c, skill_util.c, skills.c,
spell_attack.c, spell_effect.c, time.c}, socket/{info.c, request.c}: Add
missing newline character to LOG() messages.

29 lines of code changed in 19 files:

akirschbaum 2005-03-06 14:05 Rev.: 3098

common/living.c, include/living.h: Change type of weight_limit to uint32.
socket/request.c: Remove non-portable assignment to rvalue.

5 lines of code changed in 4 files:

akirschbaum 2005-03-06 13:13 Rev.: 3097

doc/{README_PLUGINS.doc, README_PYTHON.txt, plugins}, doc/Developers/{README,
plugins, python}: Update plugin documentation.

1177 lines of code changed in 5 files:

akirschbaum 2005-03-06 11:46 Rev.: 3096

plugin/plugin_python.c, plugin/include/plugin_python.h: Whitespace changes,
remove obsolete comments.

129 lines of code changed in 3 files:

akirschbaum 2005-03-06 11:26 Rev.: 3095

plugin/plugin_python.c: Only set WhoAmI when running the command registered by
CFPython.RegisterCommand. Set default result value to "success".

5 lines of code changed in 2 files:

akirschbaum 2005-03-06 10:56 Rev.: 3094

plugin/plugin_python.c: Fix memory leaks by freeing old strings before
assigning a new value.

13 lines of code changed in 2 files:

akirschbaum 2005-03-06 10:24 Rev.: 3093

plugin/plugin_python.c: Use correct format specifiers for item values and
experience values.

6 lines of code changed in 2 files:

akirschbaum 2005-03-06 10:11 Rev.: 3092

plugin/plugin_python.c: Make CFPython.IsCanBePicked return whether the object
can be picked up. (Did return whether the object cannot be picked up.)

3 lines of code changed in 2 files:

akirschbaum 2005-03-06 08:58 Rev.: 3091

plugin/plugin_python.c: Do not return a pointer to a variable on the stack.

2 lines of code changed in 2 files:

akirschbaum 2005-03-06 08:55 Rev.: 3090

server/plugins.c: Fix pointer type mismatch while processing
CFPython.RegisterCommand.

3 lines of code changed in 2 files:

akirschbaum 2005-03-06 08:49 Rev.: 3089

plugin/plugin_python.c: Change second parameter of CFPython.CheckMap to use
a map object instead of a map name. Now it works for tiles maps.

35 lines of code changed in 2 files:

akirschbaum 2005-03-06 06:46 Rev.: 3088

acinclude.m4: Add check for python 2.4 to match this file with aclocal.m4.

5 lines of code changed in 2 files:

majorwoo 2005-03-04 10:23 Rev.: 3087

New stone stair arches

0 lines of code changed in 8 files:

ryo_saeba 2005-03-03 15:58 Rev.: 3086

Windows 1.7.1 release

23 lines of code changed in 5 files:

mwedel 2005-03-03 03:09 Rev.: 3085

Add depcomp - needed by configure in conjunction with automake.
MSW 2005-03-02

0 lines of code changed in 1 file:

mwedel 2005-03-02 03:19 Rev.: 3084

Minor cleanup related to gtk-v2 commit - remove po/Makefile.in from configure,
change rcs_id stirngs in .h files to be commented out so they are not used -
otherwise, they appear in multiple files == errors.
MSW 2005-03-01

16 lines of code changed in 5 files:

mwedel 2005-03-02 02:52 Rev.: 3083

Commit for GTKv2 client - please read gtk-v2/README before using this client.
The bulk of the changes are limited to the gtk-v2 directory (addition),
but some changes elsewhere as related to using automake. You will need
to run configure for the gtk-v2 client to be built (it should be built
automatically if you have the needed libraries)
--
Changelog: Replaces CHANGES file to meet automake standards.
Makefile.am: New file for use with automake.
Makefile.in: rebult from Makefile.am
aclocal.m4: Updated with macros to check for gtk-v2.
configure.in: checks for gtk-v2 added. Chane SUBDIRS to CF_SUBDIRS as
using SUBDIRS causes conflicts.
utils/config.guess, utils/config.sub, utils/missing: Updated as part of
automake changes.
gtk-v2/*, gtk-v2/src/*: Files related to gtk-v2 client.
MSW 2005-03-01

14484 lines of code changed in 40 files:

mwedel 2005-03-01 02:35 Rev.: 3082

crossfire-client.spec: Update for 1.7.1 release, make some other changes that
better match my system since I don't think anyone else is using it.
gtk/Makefile.in: Add crossfire-client.desktop to list of files to add
to distribution.
README.rpm: removed - had info that didn't really apply to me making RPM
files
MSW 2005-02-28

35 lines of code changed in 3 files:

mwedel 2005-03-01 01:57 Rev.: 3081

configure.in, configure: Add --disable-dmalloc option to configure.
MSW 2005-02-28

238 lines of code changed in 3 files:

February 2005 »

Generated by StatSVN 0.7.0