Bug 182916 - [PATCH] devel/php-xdebug: Install as Zend extension
Summary: [PATCH] devel/php-xdebug: Install as Zend extension
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Steve Wills
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-10-12 01:00 UTC by kimor79
Modified: 2013-12-20 16:40 UTC (History)
0 users

See Also:


Attachments
file.diff (479 bytes, patch)
2013-10-12 01:00 UTC, kimor79
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description kimor79 2013-10-12 01:00:00 UTC
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:
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-10-12 01:00:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->swills

swills@ wants this submitter's PRs (via the GNATS Auto Assign Tool)
Comment 2 Edwin Groothuis freebsd_committer freebsd_triage 2013-10-12 01:00:09 UTC
State Changed
From-To: open->feedback

Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Comment 3 Edwin Groothuis freebsd_committer freebsd_triage 2013-10-12 01:00:09 UTC
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
Comment 4 dfilter service freebsd_committer freebsd_triage 2013-12-20 16:39:01 UTC
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"
Comment 5 Steve Wills freebsd_committer freebsd_triage 2013-12-20 16:39:02 UTC
State Changed
From-To: feedback->closed

Committed. Thanks!