Changeset 1455


Ignore:
Timestamp:
12/04/10 12:32:54 (22 months ago)
Author:
Freddie Akeroyd
Message:

Remove /sw from mac. Refs #223

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/4.2/configure.ac

    r1454 r1455  
    599599fi 
    600600# for Mac/fink when hdf and hdf5 are not taken from fink, but jpeg is 
    601 if test -d /sw/lib; then 
    602     LDFLAGS="$LDFLAGS -L/sw/lib" 
    603 fi 
     601#if test -d /sw/lib; then 
     602#    LDFLAGS="$LDFLAGS -L/sw/lib" 
     603#fi 
    604604# for Mac/Macports when you are not using fink at all. 
    605 if test -d /opt/local/lib; then 
    606     LDFLAGS="$LDFLAGS -L/opt/local/lib" 
    607 fi 
     605#if test -d /opt/local/lib; then 
     606#    LDFLAGS="$LDFLAGS -L/opt/local/lib" 
     607#fi 
    608608 
    609609# remove initial : 
     
    662662AC_TYPE_LONG_LONG_INT 
    663663AC_TYPE_UNSIGNED_LONG_LONG_INT 
    664 AC_CHECK_SIZEOF([int]) 
    665 AC_CHECK_SIZEOF([long int]) 
    666 AC_CHECK_SIZEOF([long long int]) 
     664dnl these are not compatible with cross architecture compiling 
     665if test x$cross_compiling != xyes; then 
     666    AC_CHECK_SIZEOF([int]) 
     667    AC_CHECK_SIZEOF([long int]) 
     668    AC_CHECK_SIZEOF([long long int]) 
     669fi 
    667670AC_STRUCT_TM 
    668671 
Note: See TracChangeset for help on using the changeset viewer.