emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Build failure: feature not provided


From: Harald Hanche-Olsen
Subject: Build failure: feature not provided
Date: Sun, 20 Apr 2008 16:41:06 +0200 (CEST)

Compiling /local/src/emacs/emacs-cvs/lisp/./org/org-export-latex.el

In toplevel form:
org/org-export-latex.el:52:1:Error: Required feature `cal-loaddefs' was not 
provided

The following patch seems to cure the problem, though it is probably
not the right thing to do. Better to fix the automatic generation of
the -loaddefs files to include an appropriate provide form?

- Harald


Index: lisp/calendar/calendar.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/calendar/calendar.el,v
retrieving revision 1.259
diff -u -r1.259 calendar.el
--- lisp/calendar/calendar.el   12 Apr 2008 03:11:03 -0000      1.259
+++ lisp/calendar/calendar.el   20 Apr 2008 14:33:19 -0000
@@ -116,7 +116,7 @@
 
 ;;; Code:
 
-(require 'cal-loaddefs)
+(load "cal-loaddefs" nil t)
 
 ;; Avoid recursive load of calendar when loading cal-menu.  Yuck.
 (provide 'calendar)
Index: lisp/calendar/diary-lib.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/calendar/diary-lib.el,v
retrieving revision 1.170
diff -u -r1.170 diary-lib.el
--- lisp/calendar/diary-lib.el  16 Apr 2008 03:23:30 -0000      1.170
+++ lisp/calendar/diary-lib.el  20 Apr 2008 14:33:20 -0000
@@ -31,7 +31,7 @@
 ;;; Code:
 
 (require 'calendar)
-(require 'diary-loaddefs)
+(load "diary-loaddefs" nil t)
 
 (defgroup diary nil
   "Emacs diary."
Index: lisp/calendar/holidays.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/calendar/holidays.el,v
retrieving revision 1.77
diff -u -r1.77 holidays.el
--- lisp/calendar/holidays.el   11 Apr 2008 03:48:37 -0000      1.77
+++ lisp/calendar/holidays.el   20 Apr 2008 14:33:21 -0000
@@ -31,7 +31,7 @@
 ;;; Code:
 
 (require 'calendar)
-(require 'hol-loaddefs)
+(load "hol-loaddefs" nil t)
 
 (defgroup holidays nil
   "Holidays support in calendar."




reply via email to

[Prev in Thread] Current Thread [Next in Thread]