Changeset 1109:743838a413f6 in roaraudio


Ignore:
Timestamp:
01/14/09 18:38:19 (15 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

wrote some more help, added --minimal

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r1101 r1109  
    5252PROXY=true 
    5353 
     54MINIMAL=false 
     55 
    5456TARGET_WIN32=false 
    5557 
     
    9092  '--help') 
    9193   echo '--help                      - This Help' 
     94   echo 
    9295   echo '--ldpath DIR                - Add DIR to (compile time) search list for libs' 
    9396   echo '--incpath DIR               - Add DIR to search list for headers' 
    9497   echo '--addpath DIR               - Add DIR/lib to lib, DIR/include to header search list' 
     98   echo 
    9599   echo '--cdrom DEV                 - Set default CDRum device' 
    96100   echo '--proc-net-decnet FILE      - Set DECnet file for DECnet support auto detecting' 
    97101   echo '                              (ignore this on non-Linux)' 
    98    echo '--no-LIB                    - disable LIB' 
     102   echo 
     103   echo '--no-LIB                    - disable library LIB' 
    99104   echo '--runtime-detect            - do as much as posible auto detecting on runtime (for distributors)' 
    100    echo '--ao-install-dir DIR' 
    101    echo '--xmms-install-dir DIR' 
    102    echo '--prefix DIR' 
    103    echo '--prefix-bin DIR' 
    104    echo '--prefix-lib DIR' 
    105    echo '--prefix-inc DIR' 
    106    echo '--prefix-man DIR' 
    107    echo '--default-rate RATE' 
    108    echo '--default-channels CHANNELS' 
    109    echo '--default-bits BITS' 
    110    echo '--without-alaw' 
    111    echo '--without-alaw-rw' 
    112    echo '--without-mulaw' 
    113    echo '--without-mulaw-rw' 
    114    echo '--without-proxy' 
    115    echo '--without-libao' 
    116    echo '--without-xmms' 
    117    echo '--target-win32' 
    118    echo '--exec-helper HELPER' 
     105   echo 
     106   echo '--ao-install-dir DIR        - Set install dir for libao plugin' 
     107   echo '--xmms-install-dir DIR      - Set install dir for XMMS plugin' 
     108   echo 
     109   echo '--prefix DIR                - Set general prefix (default: '"$PREFIX"')' 
     110   echo '--prefix-bin DIR            - Set prefix for binarys (default: $PREFIX/bin)' 
     111   echo '--prefix-lib DIR            - Set prefix for librarys (default: $PREFIX/libs)' 
     112   echo '--prefix-inc DIR            - Set prefix for include files (default: $PREFIX/include)' 
     113   echo '--prefix-man DIR            - Set prefix for manpages (default: $PREFIX/man)' 
     114   echo 
     115   echo '--default-rate RATE         - Set default sample rate for roard and roarclients' 
     116   echo '--default-channels CHANNELS - Set default number of channels for roard and roarclients' 
     117   echo '--default-bits BITS         - Set default number of bits per sample for roard and roarclients' 
     118   echo 
     119   echo '--without-alaw              - Disable support of A-Law codec (de- and encoding)' 
     120   echo '--without-alaw-rw           - Disable support for writing A-Law (saves 8KB)' 
     121   echo '--without-mulaw             - Disable support of mu-Law codec (de- and encoding)' 
     122   echo '--without-mulaw-rw          - Disable support for writing mu-Law (saves 16KB)' 
     123   echo '--without-proxy             - Disable support for proxys' 
     124   echo 
     125   echo '--without-libao             - Disable build of libao plugin' 
     126   echo '--without-xmms              - Disable build of XMMS plugin' 
     127   echo 
     128   echo '--minimal                   - Disable all optional components' 
     129   echo '--target-win32              - Disable everything useful' 
     130   echo '--exec-helper HELPER        - Exec all test programms using this command (HELPER $cmd $args)' 
     131   echo '                              use '\''--exec-helper wine'\'' when building win32 binarys' 
    119132   exit 0; 
    120133  ;; 
     
    198211  '--without-xmms') 
    199212   XMMS=false 
     213  ;; 
     214  '--minimal') 
     215   MINIMAL=true 
     216   XMMS=false 
     217   LIBAO=false 
     218   PROXY=false 
     219   MULAW=false 
     220   MULAW_RW=false 
     221   ALAW=false 
     222   ALAW_RW=false 
    200223  ;; 
    201224  '--prefix') 
     
    292315 then 
    293316  eval _no="\$no_lib_$lib"; 
     317  $MINIMAL && _no='XXX' 
    294318 
    295319  if [ "$_no" != '' ] 
     
    334358  echo "$1 (runtime detect)" 
    335359 echo "#define $DEF "\""$1"\" >&3 
     360 elif $MINIMAL 
     361 then 
     362  echo "disabled by user (minimalstic build)" 
    336363 else 
    337364 
Note: See TracChangeset for help on using the changeset viewer.