Changeset 4959:d12fc58681b0 in roaraudio for configure


Ignore:
Timestamp:
05/14/11 01:14:06 (13 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

added --use-memory-api to configure script

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r4958 r4959  
    115115SUPPORT_TRAP=false 
    116116 
     117USE_MEMMGR=false 
     118 
    117119WITHOUT_CF='cmd' 
    118120 
     
    277279   echo '--without-password-api      - Disable build of Password API' 
    278280   echo '--with-trap-api             - Build with Trap support' 
     281   echo 
     282   echo '--use-memory-api            - Use internal memory API (memmgr)' 
    279283   echo 
    280284   echo '--without-listen            - Disable listening sockets in roard' 
     
    487491   SUPPORT_TRAP=true 
    488492  ;; 
     493  '--use-memory-api') 
     494   USE_MEMMGR=true 
     495  ;; 
    489496  '--without-listen') 
    490497   NO_LISTEN=true 
     
    526533   PASSWORD_API=false 
    527534   SUPPORT_TRAP=false 
     535   USE_MEMMGR=false 
    528536   WITHOUT_VIO="$WITHOUT_VIO"' dstr cmd stdio' 
    529537   WITHOUT_CF="$WITHOUT_CF"' wave cmd cf au' 
     
    12911299 $PASSWORD_API && echo '#define ROAR_SUPPORT_PASSWORD_API' 
    12921300 $SUPPORT_TRAP && echo '#define ROAR_SUPPORT_TRAP' 
     1301 $USE_MEMMGR   && echo '#define ROAR_USE_MEMMGR' 
    12931302 $NO_LISTEN    || echo '#define ROAR_SUPPORT_LISTEN' 
    12941303 $META_DATA    && echo '#define ROAR_SUPPORT_META' 
Note: See TracChangeset for help on using the changeset viewer.