Changeset 3269:e4a065cb2ceb in roaraudio


Ignore:
Timestamp:
01/31/10 17:42:53 (14 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

do not link OpenSSl by default

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r3268 r3269  
    88        * added DSTR driver to roard 
    99        * updated librarys' soname 
     10        * do not link OpenSSL by default (licence incompatible?) 
    1011 
    1112v. 0.3beta3 - Fri Jan 22 2010 22:17 CET 
  • configure

    r3224 r3269  
    104104 
    105105ROARD_CFREQ='' # cycle frequens for roard, normaly 100Hz 
     106 
     107# Libs which are per default disabled: 
     108no_lib_ssl=true 
    106109 
    107110_CARGS="$@"; 
     
    168171   echo 
    169172   echo '--no-LIB                    - disable library LIB' 
     173   echo '--maybe-LIB                 - autodetect library LIB (default)' 
    170174   echo '--runtime-detect            - do as much as posible auto detecting on runtime (for distributors)' 
    171175   echo 
     
    269273   eval no_lib_$lib=true 
    270274  ;; 
     275  '--maybe-'*) 
     276   lib=$(echo "$1" | sed 's/^--maybe-//') 
     277   eval unset no_lib_$lib 
     278  ;; 
    271279  '--runtime-detect') 
    272280   RUNTIME_DETECT=true 
Note: See TracChangeset for help on using the changeset viewer.