- Ulrich pointed out that the last release didn't contain

the asm stuff, tracked it down to a bug in the
  Makefile.am.  Fixed that, bumped the version number, added
  news.
- Updated release script to cope with version numbers with
  more than one decimal point.
This commit is contained in:
Jamie Wilkinson 2003-02-06 00:50:08 +00:00
parent c3933d08ae
commit bd674b91df
4 changed files with 17 additions and 2 deletions

7
NEWS
View File

@ -1,6 +1,13 @@
NEWS for quake2 NEWS for quake2
=============== ===============
0.2.1 (06/02/03)
-----
* Important fix to the build system to include *all* the source files,
especially the i386 assembler, when building the release tarballs on
non-i386 architectures.
0.2 (30/01/03) 0.2 (30/01/03)
--- ---

View File

@ -5,7 +5,7 @@ dnl stick the revision info into the resulting configure script
AC_REVISION($Revision$) dnl AC_REVISION($Revision$) dnl
AC_PREREQ(2.50) AC_PREREQ(2.50)
AC_INIT(quake2, 0.2, quake2-devel@lists.quakeforge.net) AC_INIT(quake2, 0.2.1, quake2-devel@lists.quakeforge.net)
AC_CONFIG_AUX_DIR(.) AC_CONFIG_AUX_DIR(.)
AC_CONFIG_SRCDIR(src/main.c) AC_CONFIG_SRCDIR(src/main.c)
AM_CONFIG_HEADER(config.h) AM_CONFIG_HEADER(config.h)

View File

@ -68,6 +68,14 @@ quake2_SOURCES = main.c q_sh.c vid_menu.c vid_so.c q_glob.c net_udp.c \
\ \
$(QUAKE2_ASM) $(SOUND) $(QUAKE2_ASM) $(SOUND)
# include the asm and so forth when building on non-x86 architectures
EXTRA_ref_soft_la_SOURCES = r_aclipa.S r_draw16.S r_drawa.S r_edgea.S \
r_scana.S r_spr8.S r_surf8.S math.S \
d_polysa.S r_varsa.S sys_dosa.S
EXTRA_quake2_SOURCES = snd_mixa.S cd_sdl.c snd_sdl.c snd_dma.c \
snd_mix.c snd_mem.c cd.c snd.c
if BUILD_SDLQUAKE2 if BUILD_SDLQUAKE2
quake2_CFLAGS = $(std_cflags) @PTHREAD_CFLAGS@ @SDL_CFLAGS@ quake2_CFLAGS = $(std_cflags) @PTHREAD_CFLAGS@ @SDL_CFLAGS@
else else

View File

@ -41,7 +41,7 @@ cp ../../cvs/ChangeLog .
make distcheck make distcheck
VERSION=`echo $1 | sed -e 's/version_//' -e 's/_/./'` VERSION=`echo $1 | sed -e 's/version_//' -e 's/_/./g'`
cp quake2-$VERSION.tar.gz ../../release cp quake2-$VERSION.tar.gz ../../release