php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Return to Bug #67827
Patch php-fix-crypt-sha512-v2.patch revision 2014-08-14 11:10 UTC by ncopa at alpinelinux dot org
Patch php-fix-crypt-sha512.patch revision 2014-08-12 11:12 UTC by ncopa at alpinelinux dot org

Patch php-fix-crypt-sha512.patch for *Encryption and hash functions Bug #67827

Patch version 2014-08-12 11:12 UTC

Return to Bug #67827 | Download this patch
This patch is obsolete

Obsoleted by patches:

Patch Revisions:

Developer: ncopa@alpinelinux.org

--- ./ext/standard/config.m4.orig
+++ ./ext/standard/config.m4
@@ -314,7 +314,7 @@
   fi
   AC_DEFINE_UNQUOTED(PHP_MD5_CRYPT, $ac_result, [Whether the system supports MD5 salt])  
   
-  if test "$ac_cv_crypt_sha512" = "yes"; then
+  if test "$ac_cv_crypt_SHA512" = "yes"; then
     ac_result=1
     ac_crypt_sha512=1
   else
@@ -323,7 +323,7 @@
   fi
   AC_DEFINE_UNQUOTED(PHP_SHA512_CRYPT, $ac_result, [Whether the system supports SHA512 salt])
 
-  if test "$ac_cv_crypt_sha256" = "yes"; then
+  if test "$ac_cv_crypt_SHA256" = "yes"; then
     ac_result=1
     ac_crypt_sha256=1
   else

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Mar 29 13:01:29 2024 UTC