From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/70648 Path: news.gmane.org!not-for-mail From: Robert Pluim Newsgroups: gmane.emacs.gnus.general Subject: Compiling No Gnus for XEmacs Date: Tue, 07 Sep 2010 19:09:00 +0200 Organization: not if I can help it Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1283879376 15254 80.91.229.12 (7 Sep 2010 17:09:36 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 7 Sep 2010 17:09:36 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M19021@lists.math.uh.edu Tue Sep 07 19:09:35 2010 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Ot1fp-0005ZD-OF for ding-account@gmane.org; Tue, 07 Sep 2010 19:09:34 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1Ot1fc-0001wF-9l; Tue, 07 Sep 2010 12:09:20 -0500 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1Ot1fZ-0001vv-Ah for ding@lists.math.uh.edu; Tue, 07 Sep 2010 12:09:17 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtp (Exim 4.72) (envelope-from ) id 1Ot1fY-0002re-CW for ding@lists.math.uh.edu; Tue, 07 Sep 2010 12:09:17 -0500 Original-Received: from lo.gmane.org ([80.91.229.12]) by quimby.gnus.org with esmtp (Exim 3.36 #1 (Debian)) id 1Ot1fX-0005vt-00 for ; Tue, 07 Sep 2010 19:09:15 +0200 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1Ot1fV-0005LL-Cq for ding@gnus.org; Tue, 07 Sep 2010 19:09:13 +0200 Original-Received: from lns-bzn-49f-81-56-191-143.adsl.proxad.net ([81.56.191.143]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 07 Sep 2010 19:09:13 +0200 Original-Received: from rpluim by lns-bzn-49f-81-56-191-143.adsl.proxad.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 07 Sep 2010 19:09:13 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 45 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: lns-bzn-49f-81-56-191-143.adsl.proxad.net User-Agent: Gnus/5.110011 (No Gnus v0.11) XEmacs/21.5-b29 (cygwin32) Cancel-Lock: sha1:ogLCbXisDElVOE4RIuzbnlm0eAQ= X-Spam-Score: -1.0 (-) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:70648 Archived-At: Hi, I've got the latest No Gnus from git, and done ./configure && make EMACS=xemacs which results in: cd lisp && make EMACS="xemacs" lispdir="/usr/local/share/xemacs/site-packages/lisp/gnus" all make[1]: Entering directory `/cygdrive/c/Documents and Settings/RPluim/.xemacs/gnus/lisp' rm -f *.elc gnus-load.el auto-autoloads.* custom-load.* URLDIR="/cygdrive/c/Documents and Settings/RPluim/.xemacs/xemacs-packages/lisp/w3/" W3DIR="/cygdrive/c/Documents and Settings/RPluim/.xemacs/xemacs-packages/lisp/w3/" lispdir="/usr/local/share/xemacs/site-packages/lisp/gnus" srcdir=. xemacs -batch -no-autoloads -l ./dgnushack.el -f dgnushack-make-cus-load . Loading cus-dep... xemacs exiting. Cannot open load file: "advice"make[1]: *** [gnus-load.el] Error 255 make[1]: Leaving directory `/cygdrive/c/Documents and Settings/RPluim/.xemacs/gnus/lisp' make: *** [lick] Error 2 I'm using "XEmacs 21.5 (beta29) \"garbanzo\" 4f98237e23fc [Lucid] (i686-pc-cygwin, Mule) of Thu May 20 2010 on RPluim" The obvious but probably wrong solution is: --- lisp/Makefile 2010-09-07 19:05:48.828924100 +0200 +++ lisp/Makefile~ 2010-09-07 19:04:36.609711900 +0200 @@ -7,7 +7,7 @@ top_srcdir = .. EMACS = xemacs -FLAGS = -batch -l $(srcdir)/dgnushack.el +FLAGS = -batch -no-autoloads -l $(srcdir)/dgnushack.el INSTALL = /usr/bin/install -c INSTALL_DATA = ${INSTALL} -m 644 SHELL = /bin/sh Suggestions welcome. Robert --