|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2011-08-19 07:38 UTC] colder@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 18 23:00:01 2025 UTC |
Description: ------------ Build produces php_waekref.dll, not php_weakref.dll Patch supplied below. Reproduce code: --------------- Index: config.w32 =================================================================== --- config.w32 (revision 315168) +++ config.w32 (working copy) @@ -3,5 +3,5 @@ ARG_ENABLE("weakref", "Weakref support", "no"); if (PHP_WEAKREF != "no") { - EXTENSION("waekref", "weakref.c", PHP_WEAKREF_SHARED); + EXTENSION("weakref", "weakref.c", PHP_WEAKREF_SHARED); }