From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Maurizio Vitale Newsgroups: gmane.emacs.help Subject: Re: Where is `configure' script in the emacs source tree? Date: Fri, 4 Sep 2015 15:28:54 -0700 Message-ID: References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1441415429 24323 80.91.229.3 (5 Sep 2015 01:10:29 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 5 Sep 2015 01:10:29 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: Norbert Melzer Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Sep 05 03:10:16 2015 Return-path: Envelope-to: geh-help-gnu-emacs@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 1ZY1zi-0005J9-Jh for geh-help-gnu-emacs@m.gmane.org; Sat, 05 Sep 2015 03:10:14 +0200 Original-Received: from localhost ([::1]:36376 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZY1zj-0000k4-6x for geh-help-gnu-emacs@m.gmane.org; Fri, 04 Sep 2015 21:10:15 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:42394) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZXzTf-0000bp-BD for help-gnu-emacs@gnu.org; Fri, 04 Sep 2015 18:29:03 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZXzTb-0003it-K3 for help-gnu-emacs@gnu.org; Fri, 04 Sep 2015 18:28:59 -0400 Original-Received: from mail-wi0-x231.google.com ([2a00:1450:400c:c05::231]:35677) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZXzTb-0003ip-DI for help-gnu-emacs@gnu.org; Fri, 04 Sep 2015 18:28:55 -0400 Original-Received: by wicge5 with SMTP id ge5so30371759wic.0 for ; Fri, 04 Sep 2015 15:28:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=S9QzTife893GAueR4xMgGNLcGKJqMR8bshRHSYLJ4L0=; b=bObZiAVUi3zON9lZVlRWn7Ib1zBHV+ayisROjmYAvIc9X+opXSVQPilixmXZYocYV4 cw4FvBcnPFBOLHUxR6PnHmxW5PfYXtQRZkr+x4M6OKN5DEv1LaldSVxAb6YCC0qsnsMT skJTn9/rXwsOHXbUt6dJrASOS9VPZQNqic5D8cvCEOBPcxeVVNI2o6JUhEyDn+Oe8inO 84CjQJZu7M8hBqJlPp6Gq9ibohNpMP2riTvOqjEnZgZ9B4/d+R6F2B8+GMdaftFQFQ2n Wk9gVVpeNQ6HgOSW0yByORBS4AFkzYOMlk0VsEMqic8jrLe6dNF+GwrlYCLdZ3nmZHJ3 /N+A== X-Received: by 10.194.87.102 with SMTP id w6mr10949967wjz.111.1441405734175; Fri, 04 Sep 2015 15:28:54 -0700 (PDT) Original-Received: by 10.28.184.197 with HTTP; Fri, 4 Sep 2015 15:28:54 -0700 (PDT) In-Reply-To: X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:400c:c05::231 X-Mailman-Approved-At: Fri, 04 Sep 2015 21:09:51 -0400 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:107030 Archived-At: when you clone the repo you have to run autogen.sh, which among other things will generate configure from configure.ac the directions you're following are good for released tarballs, which came w/ a pre-generated configure script. you should be able to find instructions on how to compile out of a cloned repository. On Fri, Sep 4, 2015 at 7:34 AM, Norbert Melzer wrote: > Navy Cheng Wrote in message: > > Hi, > > I want to compile and install emacs from the source. So I clone ` > https://github.com/emacs-mirror/emacs.git' to my laptop. > > > > 1. git clone https://github.com/emacs-mirror/emacs.git > > 2. cd ./emacs > > 3. git checkout emacs-24.5 > > 4. git branch -b mybr > > > > I think I get the emacs-24.5 source now. The I read README and INSTALL. > In INSTALL: > > > >> 2a. `cd' to the directory where you unpacked Emacs and invoke the > >> `configure' script: > >> > >> ./configure > > > > But I can't find configure in the repository. Where is `configure'? > > > > > > > > When building from git you have > to follow (INSTALL.REPO)[https://g > ithub.com/emacs-mirror/emacs/blob/master/INSTALL.REPO] > -- > > > ----Android NewsGroup Reader---- > http://usenet.sinaapp.com/ >