From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sebastian Rose Subject: Re: further on compiling development version of org-mode without make command Date: Thu, 09 Jul 2009 20:02:55 +0200 Message-ID: <87ws6hray8.fsf@kassiopeya.MSHEIMNETZ> References: <87k52i266j.wl%ucecesf@ucl.ac.uk> <87ab3emd08.fsf@kassiopeya.MSHEIMNETZ> <800CD20A-6D75-43A2-B68A-B9434AE3BA6D@nf.mpg.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MOxtU-0000XD-V5 for emacs-orgmode@gnu.org; Thu, 09 Jul 2009 13:58:52 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MOxtP-0000Wo-IB for emacs-orgmode@gnu.org; Thu, 09 Jul 2009 13:58:51 -0400 Received: from [199.232.76.173] (port=49307 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MOxtP-0000Wl-8j for emacs-orgmode@gnu.org; Thu, 09 Jul 2009 13:58:47 -0400 Received: from mail.gmx.net ([213.165.64.20]:55456) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1MOxtO-0002U7-M0 for emacs-orgmode@gnu.org; Thu, 09 Jul 2009 13:58:47 -0400 In-Reply-To: <800CD20A-6D75-43A2-B68A-B9434AE3BA6D@nf.mpg.de> (Stefan Vollmar's message of "Thu, 09 Jul 2009 19:05:25 +0200") 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: Stefan Vollmar Cc: Org Mode Stefan Vollmar writes: > Gentlemen, > > we have tried the lisp-version for updating a the plain vanilla MS Windows emacs > (http://ftp.gnu.org/gnu/emacs/windows) and I think we are almost there - thanks > for all the help so far! > > When running make update on MacOS X with Aquamacs 1.8b I get lots of warnings > about "functions not known to be defined" or "functions might not be defined at > runtime", however, everything seems to work just fine. > > Running Sebastian's script on the Windows version yields a number of similar > warnings but has in addition some "cannot open load file" errors (see > below). My feeling is that something comparatively simple is missing, many > thanks in advance for any help with this! > > Warm regards, > Stefan > > Compiling file d:/Program Files (x86)/emacs-22.3/org-6.28e/lisp/org- > agenda.el at Thu Jul 09 13:50:09 2009 > > In org-prepare-agenda: > org-agenda.el:2369:11:Warning: assignment to free variable > `org-agenda-contributing-files' > org-agenda.el:2371:34:Warning: org-agenda-files called with 2 arguments, but > accepts only 0-1 > > In org-agenda-fontify-priorities: > org-agenda.el:2450:31:Warning: reference to free variable `org- > priority-faces' > > In org-agenda-list: > org-agenda.el:2862:14:Warning: org-agenda-files called with 2 arguments, but > accepts only 0-1 > org-agenda.el:2867:38:Warning: org-agenda-files called with 2 arguments, but > accepts only 0-1 > > [...] > > In org-search-view: > org-agenda.el:2991:18:Warning: org-agenda-files called with 2 arguments, but > accepts only 0-1 > Compiling file d:/Program Files (x86)/emacs-22.3/org-6.28e/lisp/org- > ascii.el at Thu Jul 09 13:50:10 2009 > org-ascii.el:29:1:Error: Cannot open load file: org-exp Hello Stefan, this last one is because of the line (require 'org-exp) in `org-ascii.el' ...OK, I tried with a vanilla emacs (emacs -Q) and saw, we either need a list of files in the right order, or we compile all the files 5 times (which is bad, since that value could change). The list is in the Makefile already (that list could change too). I'll try it that way and post the results here. Sebastian