Changeset 5102:04186989eedd in roaraudio for configure


Ignore:
Timestamp:
07/24/11 16:19:28 (13 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

roard now starts up in 32 bit mode by default. (configure option has been addded) (Closes: #48)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r5089 r5102  
    138138ROAR_DRIVER_CODEC='' 
    139139 
     140ROARD_BITS=''  # Bits per sample used by roard. 
    140141ROARD_CFREQ='' # cycle frequens for roard, normally 100Hz 
    141142 
     
    295296   echo '                            - Sets distribution part of version string' 
    296297   echo 
    297    echo '--roard-cfreq FREQ          - Sets the cycle frequency of roard in Hz.' 
     298   echo '--roard-cfreq FREQ          - Sets the cycle frequency of roard in Hz' 
     299   echo '--roard-bits  BITS          - Sets the number of bits per sample used by roard' 
    298300   echo '--vorbis-bits BITS          - Sets bits per sample used by Vorbis code' 
    299301   echo 
     
    510512  '--roard-cfreq') 
    511513   ROARD_CFREQ="$2" 
     514   shift; 
     515  ;; 
     516  '--roard-bits') 
     517   ROARD_BITS="$2" 
    512518   shift; 
    513519  ;; 
     
    14071413 echo 
    14081414 [ "$ROARD_CFREQ"         = '' ] || echo "#define ROAR_OUTPUT_CFREQ     $ROARD_CFREQ" 
    1409  echo "#define ROAR_VORBIS_BITS     $VORBIS_BITS" 
     1415 [ "$ROARD_BITS"          = '' ] || echo "#define ROAR_ROARD_BITS       $ROARD_BITS" 
     1416 echo "#define ROAR_VORBIS_BITS      $VORBIS_BITS" 
    14101417 echo 
    14111418 $MINIMAL      && echo '#define ROAR_MINIMAL' 
Note: See TracChangeset for help on using the changeset viewer.