|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-06-06 01:17 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 29 11:00:01 2025 UTC |
The MCVE extension has two minor problems: 1. It will not compile as a shared library due to ext/mcve/mcve.c line 144: ZEND_GET_MODULE(mcve) should be: ZEND_GET_MODULE(php_mcve) 2. The test is broken due to ext/mcve/tests/001.phpt line 4: if (!extension_loaded("MCVE")) print "skip"; should be: if (!extension_loaded("mcve")) print "skip"; I'm working on a very slow machine and cannot follow the patch instructions... I hope this is enough for someone to fix the problem / submit a patch. If this is the wrong place to submit this problem, let me know. Thanks, Noah Gintis.