Gnus development mailing list
 help / color / mirror / Atom feed
* Gnus v5.6.29 is released
@ 1998-08-06  5:59 Lars Magne Ingebrigtsen
  1998-08-06 12:49 ` Jochen_Hayek
  0 siblings, 1 reply; 2+ messages in thread
From: Lars Magne Ingebrigtsen @ 1998-08-06  5:59 UTC (permalink / raw)


Bug fixes.

Get it from <URL:http://www.gnus.org/gnus.tar.gz> or 
"/ftp@ftp.gnus.org:/pub/emacs/gnus/".  The patch is available as
<URL:http://www.gnus.org/patches/gnus-5.6.28-5.6.29.diff.gz>.

ChangeLog since last release:

Thu Aug  6 07:58:17 1998  Lars Magne Ingebrigtsen  <larsi@menja.ifi.uio.no>

	* gnus.el: Gnus v5.6.29 is released.

1998-08-06 07:10:31  Lars Magne Ingebrigtsen  <larsi@gnus.org>

	* gnus-agent.el (gnus-agent-expire): Check whether (caar
	gnus-agent-article-alist) is nil.

	* gnus.el (gnus-read-method): Allow selecting predefined servers. 

	* gnus-topic.el (gnus-topic-update-topic-line): Compute right
	number when inserting missing topic lines.

	* gnus-start.el (gnus-get-unread-articles): Check that the group
	is alive.

	* gnus-score.el (gnus-score-load-score-alist): Better error
	messaging. 

Tue Aug  4 09:42:31 1998  Kurt Swanson  <ksw@dna.lth.se>

	* gnus-salt.el (gnus-pick-mouse-pick-region): Fix picking bug due
	to use of gnus-read-event-char.

1998-07-28  Dave Love  <d.love@dl.ac.uk>

	* gnus-group.el (gnus-group-fetch-faq): Don't mung dots in group
	name.

1998-07-27  Dave Love  <d.love@dl.ac.uk>

	* gnus-topic.el (gnus-topic-mode-map): Provide Emacs tty
	alternatives to [tab], [(meta tab)].

1998-08-06 04:41:38  Lars Magne Ingebrigtsen  <larsi@gnus.org>

	* gnus-start.el (gnus-startup-file-coding-system): New variable.
	(gnus-read-init-file): Use it.
	(gnus-read-newsrc-el-file): Ditto.

	* gnus-sum.el (gnus-thread-ignore-subject): Changed default.

1998-08-06 04:38:02  Richard Stallman  <rms@gnu.org>

	* message.el (sendmail): Required.

1998-08-06 02:11:37  Lars Magne Ingebrigtsen  <larsi@gnus.org>

	* gnus-sum.el (gnus-auto-select-same): Dix fix.

1998-08-04  Mike McEwan  <mike@lotusland.demon.co.uk>

	* gnus-sum.el (gnus-select-newsgroup): Set
	`gnus-newsgroup-unselected' when selecting specific articles via
	SELECT-ARTICLE - there may be more headers to fetch if
	`gnus-fetch-old-headers' is non-nil. 
	(gnus-summary-read-group): pass SELECT-ARTICLE to
	`gnus-summary-read-group-1' and reset to nil when going to next group.
	(gnus-summary-read-group): Change `select-article' to
	`select-articles' for consistency.



-- 
(domestic pets only, the antidote for overdose, milk.)
  larsi@ifi.uio.no * Lars Magne Ingebrigtsen


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Gnus v5.6.29 is released
  1998-08-06  5:59 Gnus v5.6.29 is released Lars Magne Ingebrigtsen
@ 1998-08-06 12:49 ` Jochen_Hayek
  0 siblings, 0 replies; 2+ messages in thread
From: Jochen_Hayek @ 1998-08-06 12:49 UTC (permalink / raw)



>>>>> "LMI" == Lars Magne Ingebrigtsen <larsi@ifi.uio.no> writes:

    LMI> Bug fixes.
    LMI> Get it from <URL:http://www.gnus.org/gnus.tar.gz> or 
    LMI> "/ftp@ftp.gnus.org:/pub/emacs/gnus/".  The patch is available as
    LMI> <URL:http://www.gnus.org/patches/gnus-5.6.28-5.6.29.diff.gz>.

    LMI> ChangeLog since last release:

    LMI> Thu Aug  6 07:58:17 1998  Lars Magne Ingebrigtsen  <larsi@menja.ifi.uio.no>

    LMI> 	* gnus.el: Gnus v5.6.29 is released.

    LMI> [...]

I tried to build it:

    johayek@Hayek5 $ ./configure 
    creating cache ./config.cache
    checking whether make sets ${MAKE}... yes
    checking for a BSD compatible install... /usr/bin/install -c
    checking for emacs... /usr/local/bin/emacs
    checking where .elc files should go... $(prefix)/share/emacs/site-lisp

that's where the problem started, I assume -> `$(prefix)'

    checking for makeinfo... /usr/bin/makeinfo
    updating cache ./config.cache
    creating ./config.status
    creating Makefile
    creating lisp/Makefile
    creating texi/Makefile
    johayek@Hayek5 $ make -n install
    cd lisp && make EMACS=/usr/local/bin/emacs lispdir=/share/emacs/site-lisp install

the lispdir is not quite appropriate,
and that's how the Makefile looks:

    make[1]: Entering directory `/usr/local/src/tmp/gnus-5.6.29/lisp'
    /usr/local/bin/emacs -batch -q -no-site-file -l ./dgnushack.el -f dgnushack-compile
    /bin/sh ../mkinstalldirs /share/emacs/site-lisp

You don't actually want to create this as installation directory, do you?

    [...]

And that's how the (generated) Makefile looks:

    johayek@Hayek5 $ head Makefile
    # Generated automatically from Makefile.in by configure.
    lispdir = $(prefix)/share/emacs/site-lisp
    srcdir = .

I added the `prefix = ' line to Makefile
(but actually Makefile.in and/or configure should be fixed,
but I'm not familiar with the mechanism):

    johayek@Hayek5 $ head Makefile
    # Generated automatically from Makefile.in by configure.
    prefix  = /usr/local
    lispdir = $(prefix)/share/emacs/site-lisp
    srcdir = .
..
(I have posted this problem report earlier -> 5.6.{24,27},
but people have probably been to busy then to notice this.)
.



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~1998-08-06 12:49 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1998-08-06  5:59 Gnus v5.6.29 is released Lars Magne Ingebrigtsen
1998-08-06 12:49 ` Jochen_Hayek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).