Bill Schottstaedt <[EMAIL PROTECTED]> writes:
> On an SGI running irix 5.3, after ./configure and make, the build
> stops with
>
> cc -DHAVE_CONFIG_H -I.. -I./.. -I../libltdl -g -c net_db.c -DPIC -o .libs/net_db.lo
> cfe: Error: net_db.c, line 194: 'NETDB_INTERNAL' undefined; reoccurrences will not
>be reported.
> if (h_errno == NETDB_INTERNAL)
> -----------------^
> *** Error code 1 (bu21)
> *** Error code 1 (bu21)
OK, this will be fixed in prerelease 2.
For now, could you please insert #if 0/#endif around the failing code
and continue, so that we may discover possible further bugs:
static void scm_resolv_error (const char *subr, SCM bad_value)
{
#if 0 /* new line */
if (h_errno == NETDB_INTERNAL)
{
/* errno supposedly contains a useful value. */
scm_syserror (subr);
}
else
#endif /* new line */
{