From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Glenn Morris Newsgroups: gmane.emacs.devel Subject: Re: tramp requires cl at runtime Date: Mon, 17 Dec 2007 19:51:17 -0500 Message-ID: References: <38lk7zsgd4.fsf@fencepost.gnu.org> <8763yxqdo2.fsf@gmx.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1197939097 17349 80.91.229.12 (18 Dec 2007 00:51:37 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 18 Dec 2007 00:51:37 +0000 (UTC) Cc: emacs-devel@gnu.org To: Michael Albinus Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Dec 18 01:51:49 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1J4QgQ-0005gn-AD for ged-emacs-devel@m.gmane.org; Tue, 18 Dec 2007 01:51:42 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J4Qg7-0008D5-BS for ged-emacs-devel@m.gmane.org; Mon, 17 Dec 2007 19:51:23 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1J4Qg4-0008CO-EF for emacs-devel@gnu.org; Mon, 17 Dec 2007 19:51:20 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1J4Qg2-00089l-A7 for emacs-devel@gnu.org; Mon, 17 Dec 2007 19:51:19 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J4Qg1-00089Y-Tt for emacs-devel@gnu.org; Mon, 17 Dec 2007 19:51:18 -0500 Original-Received: from fencepost.gnu.org ([140.186.70.10]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1J4Qg1-0007pr-NS for emacs-devel@gnu.org; Mon, 17 Dec 2007 19:51:17 -0500 Original-Received: from rgm by fencepost.gnu.org with local (Exim 4.60) (envelope-from ) id 1J4Qg1-00025y-6G; Mon, 17 Dec 2007 19:51:17 -0500 X-Spook: Blowpipe Janet Reno 9705 Samford Road Ft. Meade colonel X-Ran: =M!eR}Jni!T?W[7u\[u#Y}[Mt2U:)1VrKoojsNVsItW-%~DnB2R[dt&fpNk*vL{,zP9r7: X-Hue: black X-Attribution: GM User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:85235 Archived-At: Michael Albinus wrote: > When I use `eval-when-compile' instead of, I get error messages compiling > with Emacs 21, that `block', `return' and `ignore-errors' are not known. I checked out the latest tramp from tramp CVS, and changed the start of tramp-compat to look like: (eval-when-compile ;; Pacify byte-compiler. (require 'cl)) (eval-and-compile (require 'custom) Then: ./configure --with-contrib --with-emacs=/usr/bin/emacs-21.4 make make install worked fine for me.