|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-09-28 22:43 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Dec 05 19:00:01 2025 UTC |
Description: ------------ In the configure script, regarding the part that test the crytography (DES, MD5, Blowfish...) the generated test C code is missing #include <unistd.h> so the test will core dump. After adding unistd.h, the cryptography is properly detected. The compile has no problem, only configure has. From crypt(3) man page: CRYPT(3) FreeBSD Library Functions Manual NAME crypt -- Trapdoor encryption LIBRARY Crypt Library (libcrypt, -lcrypt) SYNOPSIS >>> #include <unistd.h> char * crypt(const char *key, const char *salt);