Changes of Revision 5
[-] | Changed | php5-ssh2.spec |
x 1
2 Source: http://pecl.php.net/package/ssh2/%{pkg_name}-%{version}.tgz 3 Patch0: php5-ssh2-lib64.patch 4 Patch1: php5-ssh2-fixes.patch 5 +Patch2: php5-ssh2-compile-fix.patch 6 7 Summary: Bindings for the libssh2 library 8 %description 9
10 %setup -n %{pkg_name}-%{version} 11 %patch0 12 %patch1 13 +%patch2 14 15 %{__mkdir} %{name} 16 17 |
||
[+] | Added | php5-ssh2-compile-fix.patch ^ |
@@ -0,0 +1,14 @@ +--- ssh2.c.orig 2005-11-02 00:40:23.000000000 +0100 ++++ ssh2.c 2008-04-24 14:07:22.000000000 +0200 +@@ -477,8 +477,10 @@ + + ZEND_FETCH_RESOURCE(session, LIBSSH2_SESSION*, &zsession, -1, PHP_SSH2_SESSION_RES_NAME, le_ssh2_session); + +-#if LIBSSH2_APINO < 200412301450 ++#ifdef LIBSSH2_APINO ++# if LIBSSH2_APINO < 200412301450 + libssh2_session_methods(session, &kex, &hostkey, &crypt_cs, &crypt_sc, &mac_cs, &mac_sc, &comp_cs, &comp_sc, &lang_cs, &lang_sc); ++# endif + #else + kex = libssh2_session_methods(session, LIBSSH2_METHOD_KEX); + hostkey = libssh2_session_methods(session, LIBSSH2_METHOD_HOSTKEY); |