From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Juanma Barranquero Newsgroups: gmane.emacs.devel Subject: Re: Included libraries in the Windows binary distribution Date: Sun, 5 Feb 2012 20:52:27 +0100 Message-ID: References: <8362fmemv9.fsf@gnu.org> <4F2DF0C7.6050903@gmail.com> <83liohckbr.fsf@gnu.org> <86k44113p3.fsf@googlemail.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1328471597 32681 80.91.229.3 (5 Feb 2012 19:53:17 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sun, 5 Feb 2012 19:53:17 +0000 (UTC) Cc: Eli Zaretskii , emacs-devel@gnu.org To: Christoph Scholtes Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Feb 05 20:53:16 2012 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Ru89E-00014C-24 for ged-emacs-devel@m.gmane.org; Sun, 05 Feb 2012 20:53:16 +0100 Original-Received: from localhost ([::1]:53545 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ru89D-0005Ub-D8 for ged-emacs-devel@m.gmane.org; Sun, 05 Feb 2012 14:53:15 -0500 Original-Received: from eggs.gnu.org ([140.186.70.92]:41092) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ru89A-0005UL-S4 for emacs-devel@gnu.org; Sun, 05 Feb 2012 14:53:13 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ru89A-0001wB-0A for emacs-devel@gnu.org; Sun, 05 Feb 2012 14:53:12 -0500 Original-Received: from mail-pw0-f41.google.com ([209.85.160.41]:56761) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ru896-0001vj-7s; Sun, 05 Feb 2012 14:53:08 -0500 Original-Received: by pbaa12 with SMTP id a12so4931771pba.0 for ; Sun, 05 Feb 2012 11:53:07 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; bh=bgY4NzixFCGVJtPylC6MquO3ZcXfJmQXJ3Aw2YWqCmQ=; b=GCwg3JVIRaTVhz3EeXXkqyRqGWs/ASEEaXvl6y4J1Sbj1PgZYTLIrjhSEIhvYAcdXh e+/IVHapVTCzs9bnkd1EEDnKNc748YMK5BmELrpfE0qrp8+iMXKwIXh4GlwYhI6xXVdB yCFIUz14H1g9LZNSSDZwsSSrN1J0eVcNB/08g= Original-Received: by 10.68.216.135 with SMTP id oq7mr5473351pbc.94.1328471587157; Sun, 05 Feb 2012 11:53:07 -0800 (PST) Original-Received: by 10.143.37.9 with HTTP; Sun, 5 Feb 2012 11:52:27 -0800 (PST) In-Reply-To: <86k44113p3.fsf@googlemail.com> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.160.41 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:148206 Archived-At: On Sun, Feb 5, 2012 at 20:27, Christoph Scholtes wrote: > So I successfully compiled with the patch and the libraries, however > during bootstrap I got "libxml2 library not found" all over the place > during compilation of elisp files. It shows up after compilation of > every single .elc file. Is this expected? I don't have the > binaries on the path anywhere. Just wondering where this output is > generated. Here. + if (!(library =3D w32_delayed_load (libraries, Qlibxml2_dll))) + { + message ("%s", "libxml2 library not found"); + return 0; + } Every .el compiled is one instance of emacs (in batch mode) that fails to find the library and outputs the message. I think the message is not necessary (we don't warn if we don't find libpng3 or GnuTLS, for example). > Also, once I have compiled support in, how can I test it? Use libxml-parse-(xml|html)-region. =C2=A0 =C2=A0 Juanma