From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/51425 Path: main.gmane.org!not-for-mail From: Simon Josefsson Newsgroups: gmane.emacs.gnus.general Subject: Re: errors during compilation of fresh oort. Date: Mon, 14 Apr 2003 15:45:24 +0200 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1050327986 29073 80.91.224.249 (14 Apr 2003 13:46:26 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 14 Apr 2003 13:46:26 +0000 (UTC) Cc: Paul Foley Original-X-From: owner-ding@hpc.uh.edu Mon Apr 14 15:46:23 2003 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1954Hv-0007YZ-00 for ; Mon, 14 Apr 2003 15:46:23 +0200 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1954Hp-0007TB-00; Mon, 14 Apr 2003 08:46:17 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Mon, 14 Apr 2003 08:47:23 -0500 (CDT) Original-Received: from sclp3.sclp.com (sclp3.sclp.com [64.157.176.121]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id IAA22501 for ; Mon, 14 Apr 2003 08:47:10 -0500 (CDT) Original-Received: (qmail 41659 invoked by alias); 14 Apr 2003 13:45:59 -0000 Original-Received: (qmail 41654 invoked from network); 14 Apr 2003 13:45:58 -0000 Original-Received: from 178.230.13.217.in-addr.dgcsystems.net (HELO yxa.extundo.com) (217.13.230.178) by gnus.org with SMTP; 14 Apr 2003 13:45:58 -0000 Original-Received: from latte.josefsson.org (yxa.extundo.com [217.13.230.178]) (authenticated bits=0) by yxa.extundo.com (8.12.9/8.12.9) with ESMTP id h3EDjOXK001115 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=OK); Mon, 14 Apr 2003 15:45:38 +0200 Original-To: ding@gnus.org Mail-Copies-To: nobody X-Payment: hashcash 1.2 0:030414:ding@gnus.org:c2a97cb344e66f3b X-Hashcash: 0:030414:ding@gnus.org:c2a97cb344e66f3b X-Payment: hashcash 1.2 0:030414:mycroft@actrix.gen.nz:96ce78b3175fca77 X-Hashcash: 0:030414:mycroft@actrix.gen.nz:96ce78b3175fca77 In-Reply-To: (Maciej Matysiak's message of "Sun, 13 Apr 2003 20:55:56 +0200") User-Agent: Gnus/5.090019 (Oort Gnus v0.19) XEmacs/21.4 (Common Lisp, linux) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:51425 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:51425 Maciej Matysiak writes: > On the 12th of April 2003 at 21:57, Lars Magne Ingebrigtsen wrote: > >>> i've just updated my oort. i get these errors during compilation: >>> [...] >>> replace-dehighlight, replace-highlight >> Etc. I've tried compiling with XEmacs 21.2, but I get none of these >> warnings... > > yupp, some of the warnings are gone, but i still can see: > > Compiling /home/phoner/Elisp/current-gnus/lisp/hashcash.el... > While compiling the end of the data in file /home/phoner/Elisp/current-gnus/lisp/hashcash.el: > ** The following functions are not known to be defined: > hashcash-point-at-bol, hashcash-point-at-eol > Wrote /home/phoner/Elisp/current-gnus/lisp/hashcash.elc > > Compiling /home/phoner/Elisp/current-gnus/lisp/ssl.el... > While compiling open-ssl-stream in file /home/phoner/Elisp/current-gnus/lisp/ssl.el: > ** function open-ssl-stream used to take 0+ arguments, now takes 4 > Wrote /home/phoner/Elisp/current-gnus/lisp/ssl.elc > > (cvs updated few minutes ago). Neither hashcash.el nor ssl.el is part of Gnus, so the bug report should probably go to the respective maintainer. For hashcash.el, maybe the following fixes the warning, I've CC'd Paul on this message. Index: hashcash.el =================================================================== RCS file: /usr/local/cvsroot/gnus/contrib/hashcash.el,v retrieving revision 1.10 diff -u -p -u -w -r1.10 hashcash.el --- hashcash.el 11 Mar 2003 21:20:06 -0000 1.10 +++ hashcash.el 14 Apr 2003 13:44:13 -0000 @@ -60,6 +60,7 @@ is used instead.") (require 'mail-utils) +(eval-and-compile (defalias 'hashcash-point-at-bol (if (fboundp 'point-at-bol) 'point-at-bol @@ -68,7 +69,7 @@ is used instead.") (defalias 'hashcash-point-at-eol (if (fboundp 'point-at-eol) 'point-at-eol - 'line-end-position)) + 'line-end-position))) (defun hashcash-strip-quoted-names (addr) (setq addr (mail-strip-quoted-names addr))