From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Xue Fuqiao Newsgroups: gmane.emacs.devel Subject: Need help building Emacs Date: Sun, 22 Nov 2015 06:58:05 +0800 Message-ID: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1448146693 13767 80.91.229.3 (21 Nov 2015 22:58:13 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 21 Nov 2015 22:58:13 +0000 (UTC) To: Emacs-devel Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Nov 21 23:58:13 2015 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1a0H6g-000388-MT for ged-emacs-devel@m.gmane.org; Sat, 21 Nov 2015 23:58:10 +0100 Original-Received: from localhost ([::1]:53970 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a0H6g-0008RD-CG for ged-emacs-devel@m.gmane.org; Sat, 21 Nov 2015 17:58:10 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:44260) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a0H6d-0008R8-At for emacs-devel@gnu.org; Sat, 21 Nov 2015 17:58:08 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a0H6c-0004av-E4 for emacs-devel@gnu.org; Sat, 21 Nov 2015 17:58:07 -0500 Original-Received: from mail-io0-x22e.google.com ([2607:f8b0:4001:c06::22e]:35245) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a0H6c-0004aq-9C for emacs-devel@gnu.org; Sat, 21 Nov 2015 17:58:06 -0500 Original-Received: by ioc74 with SMTP id 74so156247365ioc.2 for ; Sat, 21 Nov 2015 14:58:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=7ih9sdgNhoLTsEyPHkwgUsUkPSM+fxxruHTogoOVUqE=; b=MAmzNPiSSsguR/m/KdectXbCVDkRShYf3QqSEFxd6xI0gmHbI8xzP7jg3JLovBPvYn 2lzSsyc6FXJNujHWW9zAeot3fWbid7d0cmzGbCIHjZWh4CGTTjvn1mZZywFOJq2t+wf8 o7Rml7pQHOFzHg2JXdeG4n1WpCgaATbHD6g2qng7GdSNWCaE17Y+MIaqKwoe+Kooq0tC OiLfk//BalNQgNUGmNXKep2BH5NYhMxUOTEhutEvQG74cMUuRE83dRhuz0HVMI0XF97c WF0U2jDyZ2A2jVpXUxngKM6L23KJHQ7bu8ATDZPBoPwG54+xabXJUSx5CQJrN142PyHF Nvqg== X-Received: by 10.107.155.149 with SMTP id d143mr20227748ioe.145.1448146685438; Sat, 21 Nov 2015 14:58:05 -0800 (PST) Original-Received: by 10.79.70.7 with HTTP; Sat, 21 Nov 2015 14:58:05 -0800 (PST) X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:4001:c06::22e 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:194968 Archived-At: Hi, I'm not sure if this kind of post is considered on-topic on emacs-devel. If not, I can move it elsewhere (help-gnu-emacs, perhaps?). I just tried to build the latest emacs-25 branch on OS X 10.11.1, but failed: $ make install [...] CC xml.o xml.c:23:10: fatal error: 'libxml/tree.h' file not found #include ^ 1 error generated. make[1]: *** [xml.o] Error 1 make: *** [src] Error 2 Among the output of my `./configure': [...] checking for LIBXML2... yes checking for htmlReadMemory in -lxml2... yes [...] Does Emacs use -lxml2? yes [...] IIRC OS X already provides libxml2, so I don't need to install one. But it seems that `make' cannot find `libxml/tree.h' in my header search path. Can anyone point me in the right direction? How to troubleshoot this kind of problem? TIA