- Updated README

- cosmetic changes to comments in snd.c and snd_dma.c
This commit is contained in:
Jamie Wilkinson 2002-04-13 03:27:39 +00:00
parent e90942f9b5
commit 9b81e4ff7f
3 changed files with 24 additions and 31 deletions

5
README
View file

@ -1,9 +1,8 @@
If you are checking this out from CVS, run the bootstrap command first to set If you are checking this out from CVS, run the bootstrap command first to set
up configure. Then follow the instructions in INSTALL. up configure. Then follow the instructions in INSTALL.
*** HARD HAT AREA *** Use --disable-asm on the configure line if you want to use the software
I am halfway through migrating the codebase to use autotools, so not everything refreshers on i386, or better yet, fix the bug in the asm!
will build just yet. Please be patient.
Note to developers: bsd/, irix/ and solaris/ are NO LONGER PERTINENT! Note to developers: bsd/, irix/ and solaris/ are NO LONGER PERTINENT!
The relevant code was merged into src/ along with the linux/ subtree, so do The relevant code was merged into src/ along with the linux/ subtree, so do

View file

@ -501,14 +501,6 @@ int SNDDMA_GetDMAPos(void) {
*/ */
void SNDDMA_Shutdown(void) { void SNDDMA_Shutdown(void) {
printf ("SNDDMA_Shutdown\n"); printf ("SNDDMA_Shutdown\n");
#if 0
if (snd_inited)
{
close(audio_fd);
audio_fd = -1;
snd_inited = 0;
}
#endif
/* merged in from snd_irix.c -- jaq */ /* merged in from snd_irix.c -- jaq */
#ifdef __sgi #ifdef __sgi
if (sgisnd_aport) { if (sgisnd_aport) {

View file

@ -1,23 +1,25 @@
/* /* $Id$
Copyright (C) 1997-2001 Id Software, Inc. *
* main control for any streaming sound output device
This program is free software; you can redistribute it and/or *
modify it under the terms of the GNU General Public License * Copyright (C) 1997-2001 Id Software, Inc.
as published by the Free Software Foundation; either version 2 * Copyright (c) 2002 The Quakeforge Project.
of the License, or (at your option) any later version. *
* This program is free software; you can redistribute it and/or
This program is distributed in the hope that it will be useful, * modify it under the terms of the GNU General Public License
but WITHOUT ANY WARRANTY; without even the implied warranty of * as published by the Free Software Foundation; either version 2
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * of the License, or (at your option) any later version.
*
See the GNU General Public License for more details. * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
You should have received a copy of the GNU General Public License * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
along with this program; if not, write to the Free Software *
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
// snd_dma.c -- main control for any streaming sound output device
#include "client.h" #include "client.h"
#include "snd_loc.h" #include "snd_loc.h"