From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Eddward DeVilla" Subject: Re: Windows binaries with org-mode preinstalled? Date: Sat, 12 May 2007 09:36:30 -0500 Message-ID: References: <6fbf4d250705112228i189c06dcpbec7ac228f512f54@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HmspZ-00069e-2y for emacs-orgmode@gnu.org; Sat, 12 May 2007 10:44:21 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HmspY-00068I-FE for emacs-orgmode@gnu.org; Sat, 12 May 2007 10:44:20 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HmspY-000680-7h for emacs-orgmode@gnu.org; Sat, 12 May 2007 10:44:20 -0400 Received: from nz-out-0506.google.com ([64.233.162.236]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Hmsi0-0006KP-2I for emacs-orgmode@gnu.org; Sat, 12 May 2007 10:36:32 -0400 Received: by nz-out-0506.google.com with SMTP id 12so1229559nzp for ; Sat, 12 May 2007 07:36:31 -0700 (PDT) In-Reply-To: <6fbf4d250705112228i189c06dcpbec7ac228f512f54@mail.gmail.com> Content-Disposition: inline List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Joshua Gilliland Cc: emacs-orgmode@gnu.org Actually, I've never installed org-mode with make. Just unpack the archive in some tempt directory and copy the .el files someplace where you want to store emacs packages. (I have a .emacs_packages directory.) If you keep xemacs, there is a second directory of xemacs only files you'll need. Then add something like the following to you're .emacs. Edd ;; set up my own package directory (setq load-path (append (list nil "~/.emacs_packages") ; ... or where ever you put it load-path)) ;; setup Org mode (add-to-list 'auto-mode-alist '("\\.org$" . org-mode)) (define-key global-map "\C-cl" 'org-store-link) (define-key global-map "\C-ca" 'org-agenda) (add-hook 'org-mode-hook 'turn-on-font-lock) ; org-mode buffers only (require 'org-install) On 5/12/07, Joshua Gilliland wrote: > Hello everyone. I have within the past month and a half begun using > org-mode for my GTD needs, learning Emacs at the same time. First off, I > have to say that I love org-mode, and want to thank Carsten and everyone who > contributes to it--it really is an amazing program. To that end, being new > to Emacs, I absolutely love Emacs as well, and have found myself continually > looking for new ways to incorporate it into my workflow. > > Now for my problem. I use a Mac at home, but I just recently switched jobs > and have a Windows computer at work, with no administrator access. This > makes it difficult for me to install anything, as I have to track down the > (overworked) IT guy and get him to do it for me. I already had him install > XEmacs for me, only to find out that it doesn't come with org-mode > preinstalled. I tried installing it myself, but it seems that I need GNU > make in order to do so, which would be something else to install, and (I > assume) I couldn't use it anyway without administrator-level access. > > My question is, is there a pre-compiled Windows binary for Emacs (of the > installation wizard flavor) that I could download and get the IT to install > for me with a minimum of hassle on his part? I looked at Emacs W32, but as > far as I can tell it's Emacs 21, and doesn't have org-mode included. > > Thanks a lot in advance for your help, everyone. > > Josh > _______________________________________________ > Emacs-orgmode mailing list > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode > >