Thanks for the advice Neil, that still didn't fix it. I have decided to
install gcc and try again and see if it may be an issue with the NCR High
Performance C compiler.
I'll keep you posted.
Blayne
________________________________________________________
G. Blayne Davidson, II When the only tool you own is a hammer,
System Programmer every problem begins to resemble a nail.
Goody's Family Clothing -Abraham Maslow
[EMAIL PROTECTED]
865-966-2000 x 1876
Neil W Rickert
<rickert+nmh@c To: BDAVIDS/Goodys@Goodys
s.niu.edu> cc: [EMAIL PROTECTED]
Subject: Re: Error message correctly
04/04/01 13:07
"BDAVIDS/Goodys" <[EMAIL PROTECTED]> wrote:
>Here is the output again, this time with the error message.
>No suffix list.
> 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
>Undefined first referenced
> symbol in file
>gethostbyname ../zotnet/libzot.a(mts.o)
>UX:ld: ERROR: ali: fatal error: Symbol referencing errors. No output
>written to ali
>*** Error code 1 (bu21)
>make: fatal error.
>*** Error code 1 (bu21)
>make: fatal error.
I would guess that you have to specify a library (maybe '-lnsl') for
the compile. You could try passing that as an argument
to 'config'.
-NWR