cvs: php4 /ext/standard/ config.m4
[email protected] ("Sascha Schumann")
| Newsgroups | php.version4 |
|---|---|
| Message-ID | <cvssas959072951@cvsserver> |
sas Tue May 23 11:09:11 2000 EDT
Modified files:
/php4/ext/standard config.m4
Log:
Only print the attention thing, if the MD5 and DES checks failed.
Index: php4/ext/standard/config.m4
diff -u php4/ext/standard/config.m4:1.22 php4/ext/standard/config.m4:1.23
--- php4/ext/standard/config.m4:1.22 Wed May 17 21:08:44 2000
+++ php4/ext/standard/config.m4 Tue May 23 11:09:11 2000
@@ -1,4 +1,4 @@
-dnl $Id: config.m4,v 1.22 2000/05/17 19:08:44 sas Exp $ -*- sh -*-
+dnl $Id: config.m4,v 1.23 2000/05/23 09:09:11 sas Exp $ -*- sh -*-
divert(3)dnl
@@ -26,7 +26,6 @@
if test "$ac_cv_crypt_des" = "yes"; then
ac_result=1
else
- PHP_DEBUG_MACRO(debug.log)
ac_result=0
fi
AC_DEFINE_UNQUOTED(PHP_STD_DES_CRYPT, $ac_result, [Whether the system supports standard DES salt])
@@ -82,6 +81,9 @@
if test "$ac_cv_crypt_md5" = "yes"; then
ac_result=1
else
+ if test "$ac_cv_crypt_des" != "yes"; then
+ PHP_DEBUG_MACRO(debug.log)
+ fi
ac_result=0
fi
AC_DEFINE_UNQUOTED(PHP_MD5_CRYPT, $ac_result, [Whether the system supports MD5 salt])