Changeset 1491:d67adb4327c3 in roaraudio


Ignore:
Timestamp:
03/31/09 19:37:00 (15 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

added --without-meta-data and --without-listen

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r1490 r1491  
    6363PASSWORD_API=true 
    6464 
     65NO_LISTEN=false 
     66 
     67META_DATA=true 
     68 
    6569WITHOUT_CF='' 
    6670 
     
    145149   echo '--without-proxy             - Disable support for proxys' 
    146150   echo 
     151   echo '--without-meta-data         - Disable support for Meta Data' 
     152   echo 
    147153   echo '--without-cf-cmd            - Disable support for command codecfilter' 
    148154   echo 
     
    150156   echo 
    151157   echo '--without-password-api      - Disable build of Password API' 
     158   echo 
     159   echo '--without-listen            - Disable listening sockets in roard' 
     160   echo '                              This is the same as allways using --no-listen' 
    152161   echo 
    153162   echo '--without-libao             - Disable build of libao plugin' 
     
    249258   PROXY=false 
    250259  ;; 
     260  '--without-meta-data') 
     261   META_DATA=false 
     262  ;; 
    251263  '--without-cf-'*) 
    252264   WITHOUT_CF="$WITHOUT_CF"' '$(echo "$1" | cut -d- -f5) 
     
    257269  '--without-password-api') 
    258270   PASSWORD_API=false 
     271  ;; 
     272  '--without-listen') 
     273   NO_LISTEN=true 
    259274  ;; 
    260275  '--without-libao') 
     
    275290   ALAW=false 
    276291   ALAW_RW=false 
     292   META_DATA=false 
    277293   PASSWORD_API=false 
    278294   WITHOUT_VIO="$WITHOUT_VIO"' dstr cmd stdio' 
     
    525541 $PROXY        && echo '#define ROAR_SUPPORT_PROXY' 
    526542 $PASSWORD_API && echo '#define ROAR_SUPPORT_PASSWORD_API' 
     543 $NO_LISTEN    || echo '#define ROAR_SUPPORT_LISTEN' 
     544 $META_DATA    && echo '#define ROAR_SUPPORT_META' 
    527545 echo 
    528546 
Note: See TracChangeset for help on using the changeset viewer.