|
From: <cro...@li...> - 2002-12-31 13:36:56
|
Module Name: crossfire Committed By: tchize Date: Tue Dec 31 13:36:51 UTC 2002 Modified Files: crossfire: Makefile.am Makefile.in aclocal.m4 configure configure.ac crossfire/common: Makefile.in crossfire/crossedit: Makefile.in crossfire/crossedit/Cnv: Makefile.in crossfire/crossedit/bitmaps: Makefile.in crossfire/crossedit/doc: Makefile.in crossfire/crossedit/include: Makefile.in crossfire/doc: Makefile.in crossfire/doc/Developers: Makefile.in crossfire/doc/playbook: Makefile.in crossfire/doc/playbook-html: Makefile.in crossfire/doc/scripts: Makefile.in crossfire/doc/spell-docs: Makefile.in crossfire/doc/spoiler: Makefile.in crossfire/doc/spoiler-html: Makefile.in crossfire/include: Makefile.in crossfire/lib: Makefile.in crossfire/plugin: Makefile.in crossfire/random_maps: Makefile.in crossfire/server: Makefile.in crossfire/socket: Makefile.in crossfire/utils: Makefile.in config.guess config.sub ltmain.sh Added Files: crossfire/devel: Makefile Makefile.in Log Message: Added crossfire-config to the build list of the configure.ac and regenerated the Makefiles and configure.in to handle it The following files had too many changes to show the context diffs here: cvs rdiff -r1.26 -r1.27 crossfire/Makefile.in cvs rdiff -r1.4 -r1.5 crossfire/aclocal.m4 cvs rdiff -r1.32 -r1.33 crossfire/configure cvs rdiff -r1.10 -r1.11 crossfire/common/Makefile.in cvs rdiff -r1.11 -r1.12 crossfire/crossedit/Makefile.in cvs rdiff -r1.5 -r1.6 crossfire/crossedit/Cnv/Makefile.in cvs rdiff -r1.3 -r1.4 crossfire/crossedit/bitmaps/Makefile.in cvs rdiff -r1.3 -r1.4 crossfire/crossedit/doc/Makefile.in cvs rdiff -r1.3 -r1.4 crossfire/crossedit/include/Makefile.in cvs rdiff -r0 -r1.1 crossfire/devel/Makefile cvs rdiff -r1.16 -r1.17 crossfire/doc/Makefile.in cvs rdiff -r1.2 -r1.3 crossfire/doc/Developers/Makefile.in cvs rdiff -r1.7 -r1.8 crossfire/doc/playbook/Makefile.in cvs rdiff -r1.7 -r1.8 crossfire/doc/playbook-html/Makefile.in cvs rdiff -r1.3 -r1.4 crossfire/doc/scripts/Makefile.in cvs rdiff -r1.3 -r1.4 crossfire/doc/spell-docs/Makefile.in cvs rdiff -r1.6 -r1.7 crossfire/doc/spoiler/Makefile.in cvs rdiff -r1.9 -r1.10 crossfire/doc/spoiler-html/Makefile.in cvs rdiff -r1.8 -r1.9 crossfire/include/Makefile.in cvs rdiff -r1.40 -r1.41 crossfire/lib/Makefile.in cvs rdiff -r1.3 -r1.4 crossfire/plugin/Makefile.in cvs rdiff -r1.13 -r1.14 crossfire/random_maps/Makefile.in cvs rdiff -r1.15 -r1.16 crossfire/server/Makefile.in cvs rdiff -r1.7 -r1.8 crossfire/socket/Makefile.in cvs rdiff -r1.12 -r1.13 crossfire/utils/Makefile.in cvs rdiff -r1.2 -r1.3 crossfire/utils/config.guess cvs rdiff -r1.1 -r1.2 crossfire/utils/ltmain.sh Start of context diffs Index: crossfire/Makefile.am diff -c crossfire/Makefile.am:1.2 crossfire/Makefile.am:1.3 *** crossfire/Makefile.am:1.2 Sat Sep 14 21:56:36 2002 --- crossfire/Makefile.am Tue Dec 31 05:36:41 2002 *************** *** 1,5 **** ! SUBDIRS = common random_maps socket server include lib utils doc plugin crossedit EXTRA_DIST = AUTHORS ChangeLog COPYING DEVELOPERS autogen.sh run_win32.bat --- 1,5 ---- ! SUBDIRS = common random_maps socket server include lib utils doc plugin crossedit devel EXTRA_DIST = AUTHORS ChangeLog COPYING DEVELOPERS autogen.sh run_win32.bat Index: crossfire/configure.ac diff -c crossfire/configure.ac:1.3 crossfire/configure.ac:1.4 *** crossfire/configure.ac:1.3 Mon Oct 7 23:38:22 2002 --- crossfire/configure.ac Tue Dec 31 05:36:42 2002 *************** *** 1,6 **** dnl Process this file with autoconf to produce a configure script. ! AC_REVISION($Id: configure.ac,v 1.3 2002/10/08 06:38:22 mwedel Exp $) AC_INIT([crossfire], [1.4.0], [cro...@li...]) AC_CONFIG_AUX_DIR(utils) AC_CONFIG_SRCDIR([server/main.c]) --- 1,6 ---- dnl Process this file with autoconf to produce a configure script. ! AC_REVISION($Id: configure.ac,v 1.4 2002/12/31 13:36:42 tchize Exp $) AC_INIT([crossfire], [1.4.0], [cro...@li...]) AC_CONFIG_AUX_DIR(utils) AC_CONFIG_SRCDIR([server/main.c]) *************** *** 213,217 **** include/Makefile utils/Makefile lib/checkarch.pl lib/collect.pl utils/add_throw.perl utils/crossloop.tmpl utils/crossloop.pl.tmpl utils/metaserver.pl utils/crossloop.web ! common/Makefile plugin/Makefile ]) --- 213,217 ---- include/Makefile utils/Makefile lib/checkarch.pl lib/collect.pl utils/add_throw.perl utils/crossloop.tmpl utils/crossloop.pl.tmpl utils/metaserver.pl utils/crossloop.web ! common/Makefile plugin/Makefile devel/Makefile ]) |