Changeset 2453

Show
Ignore:
Timestamp:
01/17/07 10:54:53 (2 years ago)
Author:
dhozac
Message:

Remove the dietlibc sanity check function, as what it's doing is already done elsewhere.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/configure.ac

    r2442 r2453  
    152152        (ia64|hppa*)    min_diet_ver=0.29;; 
    153153        (sparc*)        min_diet_ver=0.30;; 
     154        (x86_64)        min_diet_ver=0.27;; 
    154155        (*)             min_diet_ver=0.28;; 
    155156esac 
     
    174175        enable_static=no 
    175176 
    176         ENSC_DIETLIBC_SANITYCHECK 
    177177        ENSC_DIETLIBC_NEED_COMPAT(USE_DIETLIBC_COMPAT) 
    178178fi 
  • trunk/m4/ensc_dietlibc.m4

    r2446 r2453  
    165165]) 
    166166 
    167  
    168 dnl Usage: ENSC_DIETLIBC_SANITYCHECK 
    169 AC_DEFUN([ENSC_DIETLIBC_SANITYCHECK], 
    170 [ 
    171         AC_REQUIRE([AC_CANONICAL_HOST]) 
    172         AC_REQUIRE([ENSC_ENABLE_DIETLIBC]) 
    173  
    174         if test "$host_cpu" = x86_64 -a $ENSC_VERSION_DIETLIBC_NUM -le 0027; then 
    175                 AC_MSG_WARN([***                                                             ***]) 
    176                 AC_MSG_WARN([*** dietlibc<=0.27 is known to be broken for x86_64 systems     ***]) 
    177                 AC_MSG_WARN([*** please make sure that at least the environ.S fix is applied ***]) 
    178                 AC_MSG_WARN([*** and lib/__nice.c added                                      ***]) 
    179                 AC_MSG_WARN([***                                                             ***]) 
    180         fi 
    181 ])