xdebug needs to be configured as a Zend extension rather than a normal php extension to avoid: PHP Warning: Xdebug MUST be loaded as a Zend extension in Unknown on line 0 This patch changes the port from a normal php extension to a Zend extension. Fix: Patch attached with submission follows:
Responsible Changed From-To: freebsd-ports-bugs->swills swills@ wants this submitter's PRs (via the GNATS Auto Assign Tool)
State Changed From-To: open->feedback Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Maintainer of devel/php-xdebug, Please note that PR ports/182916 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/182916 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org
Author: swills Date: Fri Dec 20 16:38:53 2013 New Revision: 337037 URL: http://svnweb.freebsd.org/changeset/ports/337037 Log: - Configure as a Zend extension rather than a normal php extension PR: ports/182916 Submitted by: Kimo <kimor79@yahoo.com> Approved by: maintainer timeout (freebsd-ports-maintainers@intermedix.com, >2 months) Modified: head/devel/php-xdebug/Makefile Modified: head/devel/php-xdebug/Makefile ============================================================================== --- head/devel/php-xdebug/Makefile Fri Dec 20 16:37:22 2013 (r337036) +++ head/devel/php-xdebug/Makefile Fri Dec 20 16:38:53 2013 (r337037) @@ -3,6 +3,7 @@ PORTNAME= xdebug PORTVERSION= 2.2.3 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://www.xdebug.org/files/ PKGNAMEPREFIX= php- @@ -15,8 +16,8 @@ LICENSE= BSD CONFIGURE_ARGS= --enable-xdebug USE_PHP= yes -USE_PHPEXT= yes USE_PHPIZE= yes +USE_ZENDEXT= yes SUB_FILES= pkg-message PKGMESSAGE= ${WRKDIR}/pkg-message _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: feedback->closed Committed. Thanks!