if  [[  $(uname -r)  =  2.6.*  ]];  then
  if  test  "$HOST" == "i386-pc-linux-gnu"; then
    message "[[ ${QUERY_COLOR}Not building with NPTL as that's unsupported on i386; use i486 or higher.${DEFAULT} ]]"
    config_set_option GLIBC_NPTL n
  else
    config_query  GLIBC_NPTL  "As you are running a 2.6 kernel, would you like to use the new nptl (Native Posix Thread Libary)?"  y
    if [[ "$GLIBC_NPTL" == "y" ]]; then
      config_query  GLIBC_CVS  "Do you want to install the latest stable release 2.8 (requires cvs)?"  n
      if [[ "$GLIBC_CVS" == "y" ]]; then
        config_query GLIBC_CVS_AUTOUPDATE "Update cvs repo on every system update?" n
      fi
    fi
    config_query  GLIBC_USEIDN  "Would you like to compile glibc with libidn support?" y
  fi
fi  &&

if [[ ${SMGL_COMPAT_ARCHS[1]} == x86_64 ]]; then
  config_query GLIBC_NOLIB64  "Shall the dynamic linker install to /lib (not /lib64) (lib64 purge  part 2 of 2)?"  n
fi
