Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 9 May 2002 13:20:07 -0700 (PDT)
From:      Alex Dupre <sysadmin@alexdupre.com>
To:        freebsd-ports@FreeBSD.org
Subject:   Re: ports/37612: [New Port] PHP Development version<synopsis of the  problem
Message-ID:  <200205092020.g49KK7g94625@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/37612; it has been noted by GNATS.

From: Alex Dupre <sysadmin@alexdupre.com>
To: freebsd-gnats-submit@FreeBSD.org
Cc:  
Subject: Re: ports/37612: [New Port] PHP Development version<synopsis of the 
 problem
Date: Thu, 09 May 2002 22:04:03 +0200

 This is a multi-part message in MIME format.
 --------------31BDF27226B7C1E65A3C3B28
 Content-Type: text/plain; charset=us-ascii
 Content-Transfer-Encoding: 7bit
 
 - Major update of domxml. New functions, better DOM compliance and bug
 fixes:
   * Changed the old $node->append_child() to $node->append_sibling()
 since
     the new append_child() behaves correctly (= W3C standard).
   * Added domxml functions:
     . domxml_elem_get_elements_by_tagname()
     . domxml_doc_get_elements_by_tagname()
     . domxml_doc_get_element_by_id()
     . domxml_elem_remove_attribute()
     . domxml_elem_get_attribute_node()
   * Fixed a segfault in domxml_unlink().
   * Added formatting option to domxml_dump_mem().
   (Uwe, jtate, Chregu)
 - Fixed a bug in socket_select() that could cause unexpected behavior
 when
   using a statement like $w = $e = array($sock); This change
 unfortunately
   prevents the use of constant values (e.g. NULL) for the socket array
   paramaters. Instead, use a temporary variable or an expression with
 the
   leftmost member being a temporary variable. ex.:
   socket_select($w, $r, $e = NULL, 10); (Jason)
 - Fixed crashes in the session serializer. (Stas)
 - Fixed possible NULL-pointer dereferencing in the COM extension which
   caused 'Error in php_OLECHAR_to_char()' warnings on various places.
   Also modified the API to consistently return NULL in case of an error.
   (Alan, Harald)
 - Fixed a bug in the COM extension that caused outproc servers to 'hang'
   because of a missing Release() call. (Alan, Harald)
 
 Plus other fixes on apache2filter and some main functions.
 
 				Alex Dupre
 --------------31BDF27226B7C1E65A3C3B28
 Content-Type: text/plain; charset=us-ascii;
  name="mod_php-dev.diff"
 Content-Transfer-Encoding: 7bit
 Content-Disposition: inline;
  filename="mod_php-dev.diff"
 
 diff -ruN mod_php-dev.orig/Makefile mod_php-dev/Makefile
 --- mod_php-dev.orig/Makefile	Thu May  9 10:39:50 2002
 +++ mod_php-dev/Makefile	Thu May  9 10:41:31 2002
 @@ -13,7 +13,7 @@
  
  MAINTAINER=	sysadmin@alexdupre.com
  
 -TIMESTAMP=	200204300000
 +TIMESTAMP=	200205090000
  
  .if !defined(STANDALONE)
  .if !defined(WITH_APACHE13)
 diff -ruN mod_php-dev.orig/distinfo mod_php-dev/distinfo
 --- mod_php-dev.orig/distinfo	Thu May  9 10:39:50 2002
 +++ mod_php-dev/distinfo	Thu May  9 10:44:35 2002
 @@ -1 +1 @@
 -MD5 (php4-STABLE-200204300000.tar.bz2) = 0315ac0fc197b4b5d2c7c53d0cd1cb26
 +MD5 (php4-STABLE-200205090000.tar.bz2) = bdb6126fa3a8e61f50e73f51f4c00cb7
 diff -ruN mod_php-dev.orig/scripts/configure.php mod_php-dev/scripts/configure.php
 --- mod_php-dev.orig/scripts/configure.php	Thu May  9 10:39:50 2002
 +++ mod_php-dev/scripts/configure.php	Thu May  9 10:56:23 2002
 @@ -242,7 +242,7 @@
  			echo "CONFIGURE_ARGS+=--with-mcve=\${LOCALBASE}"
  			;;
  		\"mcrypt\")
 -			echo "LIB_DEPENDS+=	mcrypt.6:\${PORTSDIR}/security/libmcrypt"
 +			echo "LIB_DEPENDS+=	mcrypt.7:\${PORTSDIR}/security/libmcrypt"
  			echo "CONFIGURE_ARGS+=--with-mcrypt=\${LOCALBASE}"
  			;;
  		\"mhash\")
 @@ -361,7 +361,7 @@
  			;;
  		\"XSLT\")
  			echo "LIB_DEPENDS+=	sablot.67:\${PORTSDIR}/textproc/sablotron"
 -			echo "CONFIGURE_ARGS+=--enable-xslt --with-xslt-sablot --with-sablot-js"
 +			echo "CONFIGURE_ARGS+=--enable-xslt --with-xslt-sablot"
  			if [ -z "$XML" ]; then
  				set $* \"XML\"
  			fi
 
 --------------31BDF27226B7C1E65A3C3B28--
 

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200205092020.g49KK7g94625>