Hi, I have a tinderbox, and in my options I have: DEFAULT_PHP_VER=53 However, in the Makefile it generates: 1977 all: php-xdebug-2.2.0.tbz 1978 php-xdebug-2.2.0: php-xdebug-2.2.0.tbz 1979 php-xdebug-2.2.0.tbz: pcre-8.31.tbz libxml2-2.7.8_3.tbz pkgconf-0.8.5.tbz libiconv-1.14.tbz php5-5.4.5.tbz m4-1.4.16_1,1.tbz autoconf-wrapper-20101119.tbz perl-5.10.1_7.tbz libsigsegv-2.10.tbz autoconf-2.69.tbz Somehow, this gets overwritten. I'm not sure if I made a mistake or not. All my other ports compile with php53 correctly Fix: I don't know. Maybe the port is pulling in PHP incorrectly. phpMyAdmin does get build with php53. How-To-Repeat: see above
Maintainer of devel/php-xdebug, Please note that PR ports/170614 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/170614 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org
State Changed From-To: open->feedback Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Responsible Changed From-To: freebsd-ports-bugs->scheidell See if this patch doesn't fix it: --- Makefile (revision 302518) +++ Makefile (working copy) @@ -20,7 +20,7 @@ USE_PHPEXT= yes USE_PHPIZE= yes SUB_FILES= pkg-message -DEFAULT_PHP_VER= 5 +DEFAULT_PHP_VER?= 5 PKGMESSAGE= ${WRKDIR}/pkg-message
Actually, this one is more correct than the ?= one I sent previously. Unless maintainer doesn't want to support php53. (note: I don't think the DEFAULT_PHP_VER belongs in port/Makefile.. it is already defined in <bsd.php.mk> if it doesn't exist) Maintainer: please approve: svn diff Index: Makefile =================================================================== --- Makefile (revision 302518) +++ Makefile (working copy) @@ -20,7 +20,6 @@ USE_PHPEXT= yes USE_PHPIZE= yes SUB_FILES= pkg-message -DEFAULT_PHP_VER= 5 PKGMESSAGE= ${WRKDIR}/pkg-message -- Michael Scheidell, CTO >*| * SECNAP Network Security Corporation d: +1.561.948.2259 w: http://people.freebsd.org/~scheidell
Responsible Changed From-To: scheidell->freebsd-ports-bugs Sorry, will be losing my net access for two weeks, sending this back to pool for someone to commit.
Responsible Changed From-To: freebsd-ports-bugs->flo I'll take it.
Dear php-xdebug Maintainer, please approve this patch. It removes the forcible dependency on php 5.4.x and lets xdebug build with other php versions, too. Index: Makefile =================================================================== --- Makefile (revision 302946) +++ Makefile (working copy) @@ -20,7 +20,6 @@ USE_PHPEXT= yes USE_PHPIZE= yes SUB_FILES= pkg-message -DEFAULT_PHP_VER= 5 PKGMESSAGE= ${WRKDIR}/pkg-message Thanks, Florian
Author: flo Date: Thu Sep 6 16:13:30 2012 New Revision: 303782 URL: http://svn.freebsd.org/changeset/ports/303782 Log: Do not force DEFAULT_PHP_VER to version 5, let bsd.php.mk figure it out. This allows xdebug to work with all PHP versions again. PR: ports/170614 Approved by: maintainer timeout Modified: head/devel/php-xdebug/Makefile (contents, props changed) Modified: head/devel/php-xdebug/Makefile ============================================================================== --- head/devel/php-xdebug/Makefile Thu Sep 6 16:01:49 2012 (r303781) +++ head/devel/php-xdebug/Makefile Thu Sep 6 16:13:30 2012 (r303782) @@ -20,7 +20,6 @@ USE_PHP= yes USE_PHPEXT= yes USE_PHPIZE= yes SUB_FILES= pkg-message -DEFAULT_PHP_VER= 5 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!