I found the ncr unix stanza in config.guess and fixed it so that it will find the
correct system type when i run configure.
When I do a `uname -m` it returns 3446A. On line 553 of the config.guess script it
tests for 3[34]?? as the return from uname -m. I added one more ? to that string and
it successfully identified the system.
Next problem, when I run make after the configure, it runs and runs and runs, until it
gets to the smtp part and fails with and exit 1. Below is the output of the make (I
reran it so that only the important part would be included).
I can't figure out where or why it isn't finding gethostbyname. I do have
/usr/include/netdb.h on the system and it looks like all of the files have an include
for it.
Help!
Blayne
for subdir in h config sbr zotnet mts uip etc man; do \
(cd $subdir && make CC='cc' CPPFLAGS='' DEFS='-DHAVE_CONFIG_H' CFLAGS='-O'
LDFLAGS='-s' LIBS='' prefix='/usr/local/nmh' exec_prefix='/usr/local/nmh'
bindir='/usr/bin' etcdir='/etc' libdir='/usr/local/nmh/lib' mandir='/usr/share/man'
mailspool='/var/mail' sendmailpath='/usr/ucblib/sendmail' default_editor='prompter'
default_pager='/usr/bin/more' all) || exit 1; \
done
for subdir in mts tws mf bboards; do \
(cd $subdir && make CC='cc' CPPFLAGS='' DEFS='-DHAVE_CONFIG_H' CFLAGS='-O'
LDFLAGS='-s' LIBS='' prefix='/usr/local/nmh' exec_prefix='/usr/local/nmh'
bindir='/usr/bin' etcdir='/etc' libdir='/usr/local/nmh/lib' mandir='/usr/share/man'
mailspool='/var/mail' sendmailpath='/usr/ucblib/sendmail' default_editor='prompter'
default_pager='/usr/bin/more' all) || exit 1; \
done
for subdir in smtp; do \
(cd $subdir && make CC='cc' CPPFLAGS='' DEFS='-DHAVE_CONFIG_H' CFLAGS='-O'
LDFLAGS='-s' LIBS='' prefix='/usr/local/nmh' exec_prefix='/usr/local/nmh'
bindir='/usr/bin' etcdir='/etc' libdir='/usr/local/nmh/lib' mandir='/usr/share/man'
mailspool='/var/mail' sendmailpath='/usr/ucblib/sendmail' default_editor='prompter'
default_pager='/usr/bin/more' all) || exit 1; \
done
cc -s -o ali ali.o aliasbr.o ../config/version.o ../config/config.o
../sbr/libmh.a ../mts/smtp/libsmtp.a ../zotnet/libzot.a
*** Error code 1 (bu21)
*** Error code 1 (bu21)