From owner-freebsd-ports@FreeBSD.ORG Thu Oct 23 01:45:11 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A70E016A4FB; Thu, 23 Oct 2003 01:45:11 -0700 (PDT) Received: from helo.liwing.de (helo.liwing.de [213.70.188.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id A8EAD43F93; Thu, 23 Oct 2003 01:45:09 -0700 (PDT) (envelope-from root@helo.liwing.de) Received: from helo.liwing.de (localhost.liwing.de [127.0.0.1]) by helo.liwing.de (8.12.9p2/8.12.9) with ESMTP id h9N8j6Un079640; Thu, 23 Oct 2003 08:45:06 GMT (envelope-from root@helo.liwing.de) Received: (from root@localhost) by helo.liwing.de (8.12.9p2/8.12.9/Submit) id h9N8j61R079639; Thu, 23 Oct 2003 08:45:06 GMT (envelope-from root) Date: Thu, 23 Oct 2003 08:45:06 GMT Message-Id: <200310230845.h9N8j61R079639@helo.liwing.de> To: FreeBSD-gnats-submit@freebsd.org From: Jens Rehsack X-send-pr-version: 3.113 X-GNATS-Notify: cc: ports@freebsd.org cc: Jens Rehsack Subject: [PATCH] fix broken build of textproc/xmlwrapp X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jens Rehsack List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Oct 2003 08:45:11 -0000 >Submitter-Id: current-users >Originator: Jens Rehsack >Organization: LiWing IT-Services >Confidential: no >Synopsis: [PATCH] fix broken build of textproc/xmlwrapp >Severity: non-critical >Priority: medium >Category: ports >Class: change-request >Release: FreeBSD 5.1-CURRENT i386 >Environment: System: FreeBSD statler 5.1-CURRENT FreeBSD 5.1-CURRENT #0: Tue Oct 21 09:54:47 GMT 2003 root@statler:/usr/obj/usr/src/sys/STATLER i386 >Description: Fix broken build found during package building on bento: http://bento.freebsd.org/errorlogs/i386-5-latest/xmlwrapp-0.4.3.log >How-To-Repeat: >Fix: --- patch-files begins here --- Index: textproc/xmlwrapp/files/patch-src::libxml::tree_parser.cxx =================================================================== diff -uN /dev/null textproc/xmlwrapp/files/patch-src::libxml::tree_parser.cxx --- /dev/null Thu Oct 23 08:38:00 2003 +++ textproc/xmlwrapp/files/patch-src::libxml::tree_parser.cxx Thu Oct 23 08:37:56 2003 @@ -0,0 +1,11 @@ +--- src/libxml/tree_parser.cxx.orig Thu Oct 23 08:30:38 2003 ++++ src/libxml/tree_parser.cxx Thu Oct 23 08:30:44 2003 +@@ -62,7 +62,7 @@ + struct xml::tree_impl { + tree_impl (void) : last_error_(const_default_error), warnings_(false), okay_(false) { + std::memset(&sax_, 0, sizeof(sax_)); +- initxmlDefaultSAXHandler(&sax_, 0); ++ xmlSAX2InitDefaultSAXHandler(&sax_, 0); + + sax_.warning = cb_tree_warning; + sax_.error = cb_tree_error; --- patch-files ends here ---