From c7c13adfc1f24418a779ff75e3813fa14fcdd6b9 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Mon, 18 Apr 2016 18:15:48 +0200 Subject: [PATCH] php: fix crypt() on musl (close #4039). --- srcpkgs/php/patches/php-705-crypt.patch | 20 ++++++++++++++++++++ srcpkgs/php/template | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/php/patches/php-705-crypt.patch diff --git a/srcpkgs/php/patches/php-705-crypt.patch b/srcpkgs/php/patches/php-705-crypt.patch new file mode 100644 index 00000000000..0aa78d2f9a9 --- /dev/null +++ b/srcpkgs/php/patches/php-705-crypt.patch @@ -0,0 +1,20 @@ +--- ext/standard/crypt.c.orig 2016-03-29 16:44:22.000000000 +0200 ++++ ext/standard/crypt.c 2016-04-12 18:15:09.987505656 +0200 +@@ -270,6 +270,17 @@ + return result; + } + } ++# elif defined(HAVE_CRYPT) ++ crypt_res = crypt(password, salt); ++ if (!crypt_res || (salt[0] == '*' && salt[1] == '0')) { ++ return NULL; ++ } else { ++ result = zend_string_init(crypt_res, strlen(crypt_res), 0); ++ return result; ++ } ++ ++# else ++# error No crypt() implementation + # endif + #endif + } diff --git a/srcpkgs/php/template b/srcpkgs/php/template index c44134e72e0..a6133b0f316 100644 --- a/srcpkgs/php/template +++ b/srcpkgs/php/template @@ -1,7 +1,7 @@ # Template build file for 'php' pkgname=php version=7.0.5 -revision=3 +revision=4 short_desc="An HTML-embedded scripting language" maintainer="Steve Prybylski " license="PHP"