From mboxrd@z Thu Jan 1 00:00:00 1970 From: Oleh Subject: (eval-when-compile (require 'async)) in org-download.el Date: Thu, 27 Feb 2014 11:15:18 +0100 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:32810) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WIxzu-0008Sw-Pl for emacs-orgmode@gnu.org; Thu, 27 Feb 2014 05:15:23 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WIxzs-0005Tk-2T for emacs-orgmode@gnu.org; Thu, 27 Feb 2014 05:15:22 -0500 Received: from mail-wi0-x230.google.com ([2a00:1450:400c:c05::230]:62962) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WIxzr-0005TO-Re for emacs-orgmode@gnu.org; Thu, 27 Feb 2014 05:15:19 -0500 Received: by mail-wi0-f176.google.com with SMTP id hi5so7007078wib.15 for ; Thu, 27 Feb 2014 02:15:18 -0800 (PST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: org mode Hi all, There's an issue (https://github.com/abo-abo/org-download/issues/7) with `org-download` on some systems resulting from `async` not being found even when the user has it on his system. The problem comes from org's `make install` producing a different org-download.elc than by manual byte-compilation. The issue could be resolved by putting (eval-when-compile (require 'async)) in org-download.el, but `make install` does not see 'async as the paths aren't set up when it does the compiling. Any recommendations to resolve this issue are welcome. Proposed variants include: - setting `no-byte-compile` locally in org-download.el - suggesting to use `(require 'org-download "org-download.el")` instead of `(require 'org-download)` regards, Oleh