Changeset 1019:f10df1596530 in roaraudio


Ignore:
Timestamp:
12/21/08 12:17:31 (15 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

test for sqrtl()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r1009 r1019  
    394394fi 
    395395 
     396echo -n 'checking for square root func... ' 
     397 
     398echo '#include <math.h>' > $TF_C 
     399echo 'int main (void) { sqrtl(0); return 0; }' >> $TF_C 
     400 
     401if $CCTF -lm 2> /dev/null; 
     402then 
     403 echo '#define ROAR_HAVE_SQRTL' >&3 
     404 echo 'sqrtl()' 
     405else 
     406 echo 'sqrt()' 
     407fi 
     408 
    396409echo -n 'checking for inline funcs... ' 
    397410 
Note: See TracChangeset for help on using the changeset viewer.