Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:67153 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 10751 invoked from network); 25 Apr 2013 16:20:02 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 25 Apr 2013 16:20:02 -0000 X-Host-Fingerprint: 92.254.21.118 118-21.ftth.alicecomfortplus.nl Received: from [92.254.21.118] ([92.254.21.118:20616] helo=localhost.localdomain) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id CB/B0-06793-1B759715 for ; Thu, 25 Apr 2013 12:20:02 -0400 To: internals@lists.php.net Date: Thu, 25 Apr 2013 18:19:58 +0200 Message-ID: References: X-Newsreader: Forte Agent 3.3/32.846 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Posted-By: 92.254.21.118 Subject: Re: [PHP-DEV] Re: PHP 5.5 beta4 available From: phpdev@ehrhardt.nl (Jan Ehrhardt) Jan Ehrhardt in php.internals (Thu, 25 Apr 2013 16:21:15 +0200): >And for some reason I always have to remove the libssh2* files and fall >back on my own. I still have got to find out why it goes wrong with the >'official' dependencies. With the official libssh2_a.lib there are a lot of unresolved symbols. This can be fixed by adding the SSL-libs to this line in the Makefile: LIBS_SSH2=libssh2_a.lib ssleay32.lib libeay32.lib Or adding these two lines to the config.w32 of ssh2: if ((CHECK_LIB("libssh2_a.lib;libssh2.lib", "ssh2", PHP_SSH2) && + CHECK_LIB("ssleay32.lib", "ssh2", PHP_SSH2) && + CHECK_LIB("libeay32.lib", "ssh2", PHP_SSH2) && CHECK_HEADER_ADD_INCLUDE("libssh2.h", "CFLAGS_SSH2", PHP_PHP_BUILD + "\\include\\libssh2"))) { Jan -- libssh2_a.lib(openssl.obj) : error LNK2019: unresolved external symbol _DSA_do_verify referenced in function __libssh2_dsa_sha1_verify libssh2_a.lib(openssl.obj) : error LNK2019: unresolved external symbol _DSA_new referenced in function __libssh2_dsa_new libssh2_a.lib(openssl.obj) : error LNK2019: unresolved external symbol _PEM_read_bio_RSAPrivateKey referenced in function __libssh2_rsa_new_private libssh2_a.lib(openssl.obj) : error LNK2019: unresolved external symbol _PEM_read_bio_DSAPrivateKey referenced in function __libssh2_dsa_new_private libssh2_a.lib(openssl.obj) : error LNK2019: unresolved external symbol _PEM_read_bio_PrivateKey referenced in function __libssh2_pub_priv_keyfile libssh2_a.lib(crypt.obj) : error LNK2001: unresolved external symbol _EVP_des_ede3_cbc libssh2_a.lib(crypt.obj) : error LNK2001: unresolved external symbol _EVP_rc4 libssh2_a.lib(crypt.obj) : error LNK2001: unresolved external symbol _EVP_bf_cbc libssh2_a.lib(crypt.obj) : error LNK2001: unresolved external symbol _EVP_cast5_cbc