php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #58958 No config.w32 in the package
Submitted: 2009-11-22 16:06 UTC Modified: 2017-04-01 21:43 UTC
From: stas at zend dot com Assigned:
Status: Wont fix Package: syck (PECL)
PHP Version: 5_3 SVN-2009-11-22 (dev) OS: Windows
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: stas at zend dot com
New email:
PHP Version: OS:

 

 [2009-11-22 16:06 UTC] stas at zend dot com
Description:
------------
The package does not have config.w32 so it is not possible to build this extension on Windows. 


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2009-11-22 16:21 UTC] indeyets at gmail dot com
stas, I didn't know of any successful attempts to build syck-
library on windows.

If you have other data, I would be glad to provide config.w32 
file
 [2009-11-22 18:29 UTC] stas at zend dot com
Does this library use any non-portable code? On the face of it, such library should be running anywhere there's a C compiler. Unfortunately, I couldn't get to the syck site, so I couldn't check it myself.
 [2013-04-08 13:15 UTC] greggbg at gmail dot com
You can add the following content for config.w32 :

// $Id$
// vim:ft=javascript

ARG_WITH("ssh2", "SSH2 support", "no");

if (PHP_SSH2 != "no") {
  if ((CHECK_LIB("libssh2_a.lib;libssh2.lib", "ssh2", PHP_SSH2) &&
    CHECK_HEADER_ADD_INCLUDE("libssh2.h", "CFLAGS_SSH2", PHP_PHP_BUILD + "\\include\\libssh2"))) {
      AC_DEFINE('HAVE_SSH2LIB', 1);
      AC_DEFINE('PHP_SSH2_REMOTE_FORWARDING', 1);
      AC_DEFINE('PHP_SSH2_HOSTBASED_AUTH', 1);
      AC_DEFINE('PHP_SSH2_POLL', 1);
      AC_DEFINE('PHP_SSH2_PUBLICKEY_SUBSYSTEM', 1);

      EXTENSION("ssh2", "ssh2.c ssh2_fopen_wrappers.c ssh2_sftp.c");

  } else {
    WARNING("ssh2 not enabled: libraries or headers not found");
  }
}

I successfully built on Windows 2008 32 bits version
 [2017-04-01 21:43 UTC] tpunt@php.net
-Status: Open +Status: Wont fix
 [2017-04-01 21:43 UTC] tpunt@php.net
Due to this extension not seeing any activity since 2008, this issue will not be fixed. We are therefore closing this now.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Dec 21 17:01:58 2024 UTC