From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: mobileorg - "No executable found to compute checksums" Date: Tue, 29 Jun 2010 15:21:06 -0400 Message-ID: <10922.1277839266@alphaville.usa.hp.com> References: Reply-To: nicholas.dokos@hp.com Return-path: Received: from [140.186.70.92] (port=57983 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OTgj9-0007nk-7Z for emacs-orgmode@gnu.org; Tue, 29 Jun 2010 15:44:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OTgMl-0006XM-FK for emacs-orgmode@gnu.org; Tue, 29 Jun 2010 15:21:08 -0400 Received: from g5t0006.atlanta.hp.com ([15.192.0.43]:18534) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OTgMl-0006XF-Cy for emacs-orgmode@gnu.org; Tue, 29 Jun 2010 15:21:07 -0400 In-Reply-To: Message from Buck Brody of "Tue, 29 Jun 2010 12:05:32 PDT." 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: buckbrody@gmail.com Cc: nicholas.dokos@hp.com, emacs-orgmode Buck Brody wrote: > I am trying to get mobileorg setup and receive the following message from org-mobile-push > > "No executable found to compute checksums" > > Any ideas? > > Windows 7 > Org Version 6.36c > GNU Emacs 23.2.1 > [Apologies to Buck for the double send: I forgot to cc: the list.] Presumably, you don't have any of the following programs on your machine, so the variable is set to nil: (defcustom org-mobile-checksum-binary (or (executable-find "shasum") (executable-find "sha1sum") (executable-find "md5sum") (executable-find "md5")) "Executable used for computing checksums of agenda files." :group 'org-mobile :type 'string) If you have some checksumming program, customize the variable to be the pathname of the program. If not, you'll have to get one. This was discussed on the list before: http://thread.gmane.org/gmane.emacs.orgmode/19702/focus=23857 HTH, Nick