[EMAIL PROTECTED] writes:
> I am trying to build 1.3.7 on Solaris 2.6, I am building:-
> --with-curses --enable-pop --enable-imap
>
> I'm getting an error in the imap directory:-
>
> Making all in imap
> make: Fatal error: Don't know how to make target `../types.h'
> Current working directory /usr/chris/mutt-1.3.7/imap
>
>
> There are lots of references to <sys/types.h> in the code but the
> Makefile is looking for ../types.h - is this a missing file or is the
> Makefile wrong?
Works fine here on Solaris. Do a make clean and try again.
$ configure ...
$ make
./gen_defs ./OPS ./OPS.PGP > keymap_defs.h
gcc -DSHAREDIR=\"/usr/local/share/mutt\" -DSYSCONFDIR=\"/usr/local/etc\"
-DBINDIR=\"/usr/local/bin\" -DHAVE_CONFIG_H=1 -I. -I. -I. -I./imap -Iintl
-I/usr/local/include -I/usr/local/ncurses/include -I./intl -Wall -pedantic -g -O2 -c
checktypes.c
gcc -Wall -pedantic -g -O2 -L/usr/local/ncurses/lib -R/usr/local/ncurses/lib -o
checktypes checktypes.o -lnsl -lsocket
./checktypes > types.h
[...]