]> git.pld-linux.org Git - packages/doomlegacy.git/blame - doomlegacy-nosndstat.patch
- build on x32
[packages/doomlegacy.git] / doomlegacy-nosndstat.patch
CommitLineData
746b6f37 1--- doomlegacy_142_src/linux_x/musserv/sequencer.c.orig Sat Feb 22 21:25:59 2003
2+++ doomlegacy_142_src/linux_x/musserv/sequencer.c Sat Feb 22 21:27:23 2003
cd77bbf5 3@@ -177,11 +177,7 @@
4 seq_dev = num_fm;
5
6 sndstat = fopen("/dev/sndstat", "r");
7- if (sndstat == NULL)
8- {
9- printf("musserver: could not open /dev/sndstat, exiting.\n");
10- exit(1);
11- }
12+ if (sndstat != NULL) {
13 fgets(sndver, 100, sndstat);
14 for (x = 0; x < strlen(sndver); x++)
15 if (sndver[x] == '-')
16@@ -199,6 +195,9 @@
17 }
18 voxdate = atoi(snddate);
19 fclose(sndstat);
20+ } else {
21+ voxdate = 0; /* kernel 2.4 doesn't have sndstat */
22+ }
23
24 voices = malloc(sinfo[seq_dev].nr_voices * sizeof(struct synth_voice));
25 for (x = 0; x < sinfo[seq_dev].nr_voices; x++)
This page took 0.063581 seconds and 4 git commands to generate.