Changeset 1704:7005f6725af7 in roaraudio


Ignore:
Timestamp:
05/14/09 14:08:52 (15 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

include Audacious in main configure

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r1688 r1704  
    4949AO_INST_DIR='' 
    5050XMMS_INST_DIR='' 
     51AUDACIOUS_INST_DIR='' 
    5152 
    5253SNDIO_EMUL=true 
     
    5455LIBAO=true 
    5556XMMS=true 
     57AUDACIOUS=true 
    5658 
    5759DEFAULT_RATE='' 
     
    138140   echo '--ao-install-dir DIR        - Set install dir for libao plugin' 
    139141   echo '--xmms-install-dir DIR      - Set install dir for XMMS plugin' 
     142   echo '--audacious-install-dir DIR - Set install dir for Audacious plugin' 
    140143   echo 
    141144   echo '--prefix DIR                - Set general prefix (default: '"$PREFIX"')' 
     
    171174   echo '--without-libao             - Disable build of libao plugin' 
    172175   echo '--without-xmms              - Disable build of XMMS plugin' 
     176   echo '--without-audacious         - Disable build of Audacious plugin' 
    173177   echo 
    174178   echo '--mmcu MMCU                 - Sets -mmcu compiler/linker option' 
     
    230234   shift; 
    231235  ;; 
     236  '--audacious-install-dir') 
     237   AUDACIOUS_INST_DIR="$2" 
     238   shift; 
     239  ;; 
    232240  '--default-rate') 
    233241   DEFAULT_RATE="$2" 
     
    288296  '--without-xmms') 
    289297   XMMS=false 
     298  ;; 
     299  '--without-audacious') 
     300   AUDACIOUS=false 
    290301  ;; 
    291302  '--minimal') 
     
    293304   RUNTIME_DETECT=false 
    294305   XMMS=false 
     306   AUDACIOUS=false 
    295307   LIBAO=false 
    296308   PROXY=false 
     
    350362   PROXY=false 
    351363   XMMS=false 
     364   AUDACIOUS=false 
    352365   WITHOUT_VIO="$WITHOUT_VIO"' pipe' # hope that with buffered pipes we can remove this soon 
    353366  ;; 
     
    13761389then 
    13771390 echo 'running xmms plugin configure...' 
    1378   cd xmms/ 
    1379  if [ "$XMMS_INST_DIR" = '' ] 
    1380  then 
    1381   ./configure --force-have-roar --pkg-config "$PKG_CONFIG" 
    1382  else 
     1391 cd xmms/ 
    13831392  ./configure --force-have-roar --pkg-config "$PKG_CONFIG" --inst-dir "$XMMS_INST_DIR" 
    1384  fi 
    13851393 cd .. 
    13861394else 
    13871395 echo "running xmms plugin configure... disabled by user" 
     1396fi 
     1397 
     1398if $AUDACIOUS 
     1399then 
     1400 echo 'running Audacious plugin configure...' 
     1401 cd audacious/ 
     1402  ./configure --force-have-roar --pkg-config "$PKG_CONFIG" --inst-dir "$AUDACIOUS_INST_DIR" 
     1403 cd .. 
     1404else 
     1405 echo "running Audacious plugin configure... disabled by user" 
    13881406fi 
    13891407 
Note: See TracChangeset for help on using the changeset viewer.