Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 6939
Collapse All | Expand All

(-)kmidi/TIMIDITY/motif_p.c (-1 / +3 lines)
Lines 22-27 Link Here
22
    pipe communication between motif interface and sound generator
22
    pipe communication between motif interface and sound generator
23
    */
23
    */
24
#include <sys/errno.h>
24
#ifdef IA_MOTIF
25
#ifdef IA_MOTIF
25
#include <stdio.h>
26
#include <stdio.h>
26
-- kmidi/TIMIDITY/tk_c.c       2002-04-04 21:15:35.000000000 -0600
27
++ kmidi/TIMIDITY/tk_c.c       2002-04-04 21:17:06.000000000 -0600
Lines 12-17 Link Here
12
 *================================================================*/
12
 *================================================================*/
13
#ifdef TCLTK
13
#ifdef TCLTK
14
#include <sys/errno.h>
14
#include <stdio.h>
15
#include <stdio.h>
15
#include <stdlib.h>
16
#include <stdlib.h>
16
#include <unistd.h>
17
#include <unistd.h>
(-)kmidi/TIMIDITY/makelinks (-4 / +4 lines)
Lines 3-9 srcdir=$1 Link Here
3
for header in common config controls ctl effects filter instrum mix \
3
for header in common config controls ctl effects filter instrum mix \
4
              output playmidi readmidi resample sbk sflayer tables \
4
              output playmidi readmidi resample sbk sflayer tables \
5
              version ; do
5
              version ; do
6
    if [ ! -h ${header}.h ]; then ln -s ${srcdir}/${header}.h . ; fi
6
    if [ ! -h ${header}.h ]; then ln -sf ${srcdir}/${header}.h . ; fi
7
done
7
done
8
8
9
for cfile in alsa_a arts_a b_out bag bsd20_a celeste_e chorus_e \
9
for cfile in alsa_a arts_a b_out bag bsd20_a celeste_e chorus_e \
Lines 13-26 for cfile in alsa_a arts_a b_out bag bsd Link Here
13
	     playmidi raw_a readmidi readsbk resample resample_f \
13
	     playmidi raw_a readmidi readsbk resample resample_f \
14
	     resample_l reverb_e sbktext sf2cfg slang_c sndfont \
14
	     resample_l reverb_e sbktext sf2cfg slang_c sndfont \
15
	     sun_a tables timidity wav2pat wave_a ; do
15
	     sun_a tables timidity wav2pat wave_a ; do
16
    if [ ! -h ${cfile}.c ]; then ln -s ${srcdir}/${cfile}.cpp ${cfile}.c ; fi
16
    if [ ! -h ${cfile}.c ]; then ln -sf ${srcdir}/${cfile}.cpp ${cfile}.c ; fi
17
done
17
done
18
18
19
for lfile in cfg ; do
19
for lfile in cfg ; do
20
    if [ ! -h ${lfile}.l ]; then ln -s ${srcdir}/${lfile}.l . ; fi
20
    if [ ! -h ${lfile}.l ]; then ln -sf ${srcdir}/${lfile}.l . ; fi
21
done
21
done
22
22
23
# LEAVE THIS ONE AT THE END!!
23
# LEAVE THIS ONE AT THE END!!
24
for other in BITMAPS ; do
24
for other in BITMAPS ; do
25
    if [ ! -h ${other} ]; then ln -s ${srcdir}/${other} . ; fi
25
    if [ ! -h ${other} ]; then ln -sf ${srcdir}/${other} . ; fi
26
done
26
done

Return to bug 6939