From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Eli Zaretskii" Newsgroups: gmane.emacs.help Subject: Re: Compiling lisp files on Win32 box Date: Sat, 03 May 2003 22:02:53 +0300 Sender: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: <3791-Sat03May2003220253+0300-eliz@elta.co.il> References: Reply-To: Eli Zaretskii NNTP-Posting-Host: main.gmane.org X-Trace: main.gmane.org 1051988952 15150 80.91.224.249 (3 May 2003 19:09:12 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sat, 3 May 2003 19:09:12 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Sat May 03 21:09:10 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19C2Ni-0003wE-00 for ; Sat, 03 May 2003 21:09:10 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 19C2M5-0001ZV-09 for gnu-help-gnu-emacs@m.gmane.org; Sat, 03 May 2003 15:07:29 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 19C2LP-0000iD-00 for help-gnu-emacs@gnu.org; Sat, 03 May 2003 15:06:47 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 19C2LK-0000Zn-00 for help-gnu-emacs@gnu.org; Sat, 03 May 2003 15:06:43 -0400 Original-Received: from balder.inter.net.il ([192.114.186.15]) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 19C2Kq-0008Nz-00 for help-gnu-emacs@gnu.org; Sat, 03 May 2003 15:06:12 -0400 Original-Received: from zaretsky (tony08-194-126.inter.net.il [80.230.194.126] (may be forged)) by balder.inter.net.il (Mirapoint Messaging Server MOS 3.2.2-GA) with ESMTP id CHR17311; Sat, 3 May 2003 22:06:09 +0300 (IDT) Original-To: help-gnu-emacs@gnu.org X-Mailer: emacs 21.3.50 (via feedmail 8 I) and Blat ver 1.8.9 In-reply-to: (message from Sean Rima on 03 May 2003 17:27:25 +0100) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:9230 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:9230 > From: Sean Rima > Newsgroups: gnu.emacs.help > Date: 03 May 2003 17:27:25 +0100 > > I just stuck Emacs-mvcs (Win32 version) onto an XP box without any other > tools, now I am at a loss as I cannot find a way to install things like > bbdb and mailcrypt If you need to know how to byte-compile Lisp files, here's the command: emacs -batch -f batch-byte-compile foo.el This produces foo.elc from foo.el. You then move foo.elc to the appropriate directory (something mentioned on your load-path).