On 2000-03-30 09:14:09 +0100, Chris Green wrote:
> There a couple of compiler warnings:-
> gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../intl -I../intl -Wall -pedantic -g
>-O2 -c imap.c
> imap.c: In function `imap_check_mailbox':
> imap.c:1157: warning: `t' might be used uninitialized in this function
This is an over-eager gcc. The variable is not used
uninitialized.
> gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../intl -I../intl -Wall -pedantic -g
>-O2 -c socket.c
> In file included from /usr/include/netinet/in.h:27,
> from socket.c:29:
> /usr/include/bits/socket.h:226: warning: ANSI C forbids zero-size array
>`__cmsg_data'
>
> gcc -DSHAREDIR=\"/home/d/cgreen/share/mutt\" -DSYSCONFDIR=\"/home/d/cgreen/etc\"
> -DBINDIR=\"/home/d/cgreen/bin\" -DHAVE_CONFIG_H=1 -I. -I. -I. -I./imap -Iintl
>-I/home/d/cgreen/include -I./intl -Wall -pedantic -g -O2 -c pop.c
> In file included from /usr/include/sys/socket.h:34,
> from pop.c:28:
> /usr/include/bits/socket.h:226: warning: ANSI C forbids zero-size array
>`__cmsg_data'
Problems with system headers, not our problem.
> The most significant errors were in the 'make install' phase:-
> mkdir /home/d/cgreen/doc/mutt/samples
> for f in Mush.rc Pine.rc gpg.rc pgp2.rc pgp5.rc pgp6.rc Tin.rc ; do \
> /usr/bin/install -c -m 644 ./$f /home/d/cgreen/doc/mutt/samples ; \
> done
> /usr/bin/install: ./pgp6.rc: No such file or directory
Ups.
> if test -f /home/d/cgreen/bin/mutt_dotlock && test xmail != x ; then \
> chgrp mail /home/d/cgreen/bin/mutt_dotlock && \
> chmod 2755 /home/d/cgreen/bin/mutt_dotlock || \
> { echo "Can't fix mutt_dotlock's permissions!" >&2 ; exit 1 ; } \
> fi
> chgrp: you are not a member of group `mail': Operation not permitted
> Can't fix mutt_dotlock's permissions!
> make[2]: *** [install-exec-local] Error 1
> make[2]: Leaving directory `/home/d/cgreen/build/mutt-1.1.10'
> make[1]: *** [install-am] Error 2
> make[1]: Leaving directory `/home/d/cgreen/build/mutt-1.1.10'
> make: *** [install-recursive] Error 1
Ah, ok. You are installing mutt with user permissions,
and it tries to adapt mutt_dotlock to your system's
situation.
> The problems above of course didn't stop mutt
> installing as you can see. I've not come across any
> errors while running mutt. I think the most
> significant errors are the missing pgp6.rc file and the
> fac that the install tries to set mutt_dotlock's
> permissions even though I have done a local directory
> install.
umh... I wouldn't really consider this a problem in the
installation mechanism...
--
http://www.guug.de/~roessler/