|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2016-02-11 09:58 UTC] cyrus at safe-mail dot net
Description: ------------ Description: ------------ <path>/php-7.0.3/ext/standard/random.c: In function 'php_random_bytes': <path>/php-7.0.3/ext/standard/random.c:145:26: error: called object '20480' is not a function *** Error code 1 make: Fatal error: Command failed for target `ext/standard/random.lo' ---------- occurs only on Solaris (x86/sparc) works well on RHEL 6/7 Dublicates: #70999 php_random_bytes: called object is not a function Bug #70999 is still fixed. Please commit... There is no way for me to reopen the bug. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 16:00:01 2025 UTC |
it's weird, the comment fix seems not right. I can see the current codes is: /* Does the file exist and is it a character device? */ if (fstat(fd, &st) != 0 || # ifdef S_ISNAM !(S_ISNAM(st.st_mode) || S_ISCHR(st.st_mode)) # else !S_ISCHR(st.st_mode) # endif it's differnet :<