Changeset 680

Show
Ignore:
Timestamp:
03/16/07 15:50:29 (2 years ago)
Author:
alo
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • cherokee/trunk/configure.in

    r676 r680  
    10261026        modules=`echo $modules | sed s/mysql//` 
    10271027fi 
    1028 if test "$have_crypt_lib $have_crypt_include" != "yes yes"; then 
     1028if test "$use_crypt" != "yes"; then 
    10291029        modules=`echo $modules | sed s/htpasswd//` 
    10301030fi 
     
    10961096if test "$have_select"       = yes; then methods="${methods}select";  fi 
    10971097 
    1098 crypt_type="no" 
    1099 if test "$have_crypt_lib" = "yes" && test "$have_crypt_r_lib" = "yes"; then 
     1098if test "$use_crypt_r" = "yes"; then 
    11001099        crypt_type="multithread" 
    1101 elif test "$have_crypt_lib" = "yes"; then 
     1100elif test "$use_crypt" = "yes"; then 
    11021101        crypt_type="single thread" 
     1102else 
     1103        crypt_type="no" 
    11031104fi 
    11041105