Changeset 4749:3f23463f988e in roaraudio for configure


Ignore:
Timestamp:
02/05/11 12:55:43 (13 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

updated configure to list options of wildcard parameters (Closes: #27)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r4748 r4749  
    189189 case "$1" in 
    190190  '--help') 
     191   echo 'OPTIONS:' 
     192   echo 
    191193   echo '--help                      - This Help' 
    192194   echo 
     
    280282   echo '--exec-helper HELPER        - Exec all test programms using this command (HELPER $cmd $args)' 
    281283   echo '                              use '\''--exec-helper wine'\'' when building win32 binarys' 
     284   echo 
     285   echo 
     286   echo 'LIBRARY NAMES (to be used with --no-* and --maybe-*):' 
     287   echo 
     288   grep '^test_lib_defmake ROAR_' configure | awk '{print $5}' | cut -d/ -f1 | sort | uniq | grep -v ^c$ | \ 
     289    while read lib 
     290    do 
     291     envlib=`echo "$lib" | to_escaped` 
     292     eval _no="\$no_lib_$envlib"; 
     293     if [ "$_no" != '' ] 
     294     then 
     295      echo -n "$lib (disabled) " 
     296     else 
     297      echo -n "$lib " 
     298     fi 
     299    done 
     300   echo '' # print \n 
    282301   exit 0; 
    283302  ;; 
     
    13111330 
    13121331#                #define                 subdir       name           -lxxx      -- header 
    1313 test_lib_defmake ROAR_HAVE_LIBM          %            'Math Library' m          -- math.h 
     1332test_lib_defmake ROAR_HAVE_LIBM          %            'MathLibrary' m          -- math.h 
    13141333if test_lib 'realtime Library' rt -- sys/mman.h mqueue.h semaphore.h 
    13151334then 
Note: See TracChangeset for help on using the changeset viewer.