Changeset 872:097e54949019 in roaraudio


Ignore:
Timestamp:
10/02/08 00:24:05 (16 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

run libao plugin configure at end of configure...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r864 r872  
    3131CDROM="none" 
    3232PROC_NET_DECNET="/proc/net/decnet" 
     33 
     34AO_INST_DIR='' 
    3335 
    3436echo -n "checking for C compiler... " 
     
    6971   echo '--no-LIB                    - disable LIB' 
    7072   echo '--runtime-detect            - do as much as posible auto detecting on runtime (for distributors)' 
     73   echo '--ao-install-dir DIR' 
    7174   echo '--prefix DIR' 
    7275   echo '--prefix-bin DIR' 
     
    99102  '--runtime-detect') 
    100103   RUNTIME_DETECT=true 
     104  ;; 
     105  '--ao-install-dir') 
     106   AO_INST_DIR="$2" 
     107   shift; 
    101108  ;; 
    102109  '--prefix') 
     
    485492EOF 
    486493 
     494echo 'running libao plugin configure...' 
     495 cd plugins/ao/ 
     496if [ "$AO_INST_DIR" = '' ] 
     497then 
     498 ./configure 
     499else 
     500 ./configure --inst-dir "$AO_INST_DIR" 
     501fi 
     502cd ../.. 
     503 
    487504rm -f $TF_C $TF_E 
    488505 
Note: See TracChangeset for help on using the changeset viewer.