php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #59903 Extension incorrectly named.
Submitted: 2011-08-19 07:33 UTC Modified: 2011-08-19 07:38 UTC
From: rquadling@php.net Assigned: colder (profile)
Status: Closed Package: Weakref (PECL)
PHP Version: 5_3 SVN-2011-08-19 (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: rquadling@php.net
New email:
PHP Version: OS:

 

 [2011-08-19 07:33 UTC] rquadling@php.net
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);
 }



Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2011-08-19 07:38 UTC] colder@php.net
This bug has been fixed in SVN.

In case this was a documentation problem, the fix will show up at the
end of next Sunday (CET) on pecl.php.net.

In case this was a pecl.php.net website problem, the change will show
up on the website in short time.
 
Thank you for the report, and for helping us make PECL better.

Fixed, Thanks!
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Dec 21 17:01:58 2024 UTC