Changeset 3690:c5de4a9e79bf in roaraudio for dist


Ignore:
Timestamp:
04/19/10 18:00:23 (14 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

added support for RSound emulation

Location:
dist/debian-like
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • dist/debian-like/defaults

    r2585 r3690  
    6060# --- [ EsounD Emulation ] --- 
    6161 
    62 # Listen socket for server side EsounD emulation:: 
     62# Listen socket for server side EsounD emulation: 
    6363# NONE   - Disable EsounD emulation 
    6464# UNIX   - Local connections only 
    6565# TCP    - Connections via TCP/IP 
    6666ROARD_EMUL_ESD_AF='NONE' 
     67 
     68# --- [ RSound Emulation ] --- 
     69 
     70# Listen socket for server side RSound emulation: 
     71# NONE   - Disable RSound emulation 
     72# UNIX   - Local connections only 
     73# TCP    - Connections via TCP/IP 
     74# DECnet - Connections via DECnet 
     75ROARD_EMUL_RSOUND_AF='NONE' 
    6776 
    6877# --- [ Audio and Devices ] --- 
  • dist/debian-like/roaraudio

    r3689 r3690  
    9898   [ "$ROARD_HOST" = '' ]   || _host="$ROARD_HOST" 
    9999   ESD_OPTS="--new-sock --proto esd -t -b $_host -p 16001" 
     100  ;; 
     101esac 
     102 
     103RSOUND_OPTS='' 
     104 
     105case "$ROARD_EMUL_ESD_AF" in 
     106  UNIX|unix) 
     107   RSOUND_OPTS="--new-sock --proto rsound -u -b /tmp/rsound" 
     108  ;; 
     109  TCP|tcp) 
     110   _host='localhost'; 
     111   [ "$ROARD_HOST" = '' ]   || _host="$ROARD_HOST" 
     112   RSOUND_OPTS="--new-sock --proto rsound -t -b $_host -p 12345" 
     113  ;; 
     114  DECnet|DECNET|decnet) 
     115   RSOUND_OPTS="--new-sock --proto rsound -n -b ::rsound" 
    100116  ;; 
    101117esac 
     
    157173[ "$ROARD_CHROOT" = '' ] || ROARD_OPTS="--chroot $ROARD_CHROOT $ROARD_OPTS" 
    158174 
    159 ROARD_OPTS="$ROARD_OPTS $ESD_OPTS" 
     175ROARD_OPTS="$ROARD_OPTS $ESD_OPTS $RSOUND_OPTS" 
    160176 
    161177set -e 
Note: See TracChangeset for help on using the changeset viewer.