From owner-cvs-all@FreeBSD.ORG Wed Dec 16 02:41:17 2009 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5CD8E106566B; Wed, 16 Dec 2009 02:41:17 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4B3C38FC17; Wed, 16 Dec 2009 02:41:17 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id nBG2fHOV006356; Wed, 16 Dec 2009 02:41:17 GMT (envelope-from pgollucci@repoman.freebsd.org) Received: (from pgollucci@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id nBG2fHNL006355; Wed, 16 Dec 2009 02:41:17 GMT (envelope-from pgollucci) Message-Id: <200912160241.nBG2fHNL006355@repoman.freebsd.org> From: "Philip M. Gollucci" Date: Wed, 16 Dec 2009 02:41:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/wsdlpull Makefile ports/www/wsdlpull/files patch-src__xmlpull__XmlUtils.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Dec 2009 02:41:17 -0000 pgollucci 2009-12-16 02:41:17 UTC FreeBSD ports repository Modified files: www/wsdlpull Makefile Added files: www/wsdlpull/files patch-src__xmlpull__XmlUtils.cpp Log: - Fix for amd64 A nasty bug strikes on systems, where size_t and unsigned int are different things -- such as most 64-bit systems. Stuffing the (size_t)-1 into unsigned int results in 0xffff, which is different from string::npos (0xffffffff)... Submitted by: Mikhail T. (via e-mail) Revision Changes Path 1.30 +1 -0 ports/www/wsdlpull/Makefile 1.1 +11 -0 ports/www/wsdlpull/files/patch-src__xmlpull__XmlUtils.cpp (new)