| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             [2012-10-02 13:59 UTC] tony2001@php.net
  [2012-10-02 14:44 UTC] bruno at chalopin dot fr
  [2012-10-02 14:55 UTC] tony2001@php.net
 
-Status:      Open
+Status:      Closed
-Assigned To:
+Assigned To: tony2001
  [2012-10-02 14:55 UTC] tony2001@php.net
  | 
    |||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 02:00:01 2025 UTC | 
Description: ------------ The source is missing a config.w32 file to make it installable on windows. Here's the one i've made : ARG_WITH("libevent", "libevent support", "no"); if (PHP_LIBEVENT != "no") { if (CHECK_HEADER_ADD_INCLUDE("event.h", "CFLAGS_LIBEVENT", PHP_PHP_BUILD + "\\include;" + PHP_LIBEVENT) && CHECK_LIB("libevent.lib", "libevent", PHP_PHP_BUILD + "\\lib;" + PHP_LIBEVENT)) { EXTENSION('libevent', 'libevent.c'); AC_DEFINE('HAVE_LIBEVENT', 1); } else { WARNING("libevent not enabled; libraries and headers not found"); } }