Changeset 680
- Timestamp:
- 03/16/07 15:50:29 (2 years ago)
- Files:
-
- cherokee/trunk/configure.in (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cherokee/trunk/configure.in
r676 r680 1026 1026 modules=`echo $modules | sed s/mysql//` 1027 1027 fi 1028 if test "$ have_crypt_lib $have_crypt_include" != "yesyes"; then1028 if test "$use_crypt" != "yes"; then 1029 1029 modules=`echo $modules | sed s/htpasswd//` 1030 1030 fi … … 1096 1096 if test "$have_select" = yes; then methods="${methods}select"; fi 1097 1097 1098 crypt_type="no" 1099 if test "$have_crypt_lib" = "yes" && test "$have_crypt_r_lib" = "yes"; then 1098 if test "$use_crypt_r" = "yes"; then 1100 1099 crypt_type="multithread" 1101 elif test "$ have_crypt_lib" = "yes"; then1100 elif test "$use_crypt" = "yes"; then 1102 1101 crypt_type="single thread" 1102 else 1103 crypt_type="no" 1103 1104 fi 1104 1105