[297] in Zephyr_Bugs
More bugs to report:
daemon@ATHENA.MIT.EDU (Derek Atkins)
Mon Jul 15 21:13:33 1991
Date: Mon, 15 Jul 91 18:15:38 PDT
From: warlord@baraka.Eng.Sun.COM (Derek Atkins)
To: zephyr-bugs@MIT.EDU
Here are some other bugs I encountered while building zephyr....
C-diffs included! Enjoy!
-derek
----------------------------------------------------------------
First, a bug in config.Imakefile where if you DONT have anything in
either GlobalCDefs or StrCaseFlag, it gives errors in compilation
because of the backslash at the end of the line:
*** config.Imakefile Mon Jul 15 17:06:03 1991
--- config.Imakefile~ Fri Jul 12 19:41:01 1991
***************
*** 385,391 ****
HES_LINTLIB=
#endif /* HESIOD */
! GLOBAL_CDEFS = $(KRB_CDEFS) $(HES_CDEFS) $(X_CDEFS) $(X2_CDEFS) GlobalCDefs StrCaseFlag
#ifdef LOCAL_LIBS
/*
--- 385,392 ----
HES_LINTLIB=
#endif /* HESIOD */
! GLOBAL_CDEFS = $(KRB_CDEFS) $(HES_CDEFS) $(X_CDEFS) $(X2_CDEFS) \
! GlobalCDefs StrCaseFlag
#ifdef LOCAL_LIBS
/*
Second, a bug in syslogd.c that causes it to fail in
compiling.... The Context diff follows:
*** syslogd.c Mon Jul 15 17:45:22 1991
--- syslogd.c~ Thu Mar 21 09:13:35 1991
***************
*** 335,342 ****
(void) signal(SIGQUIT, SIG_IGN);
}
#else
! (void) signal(SIGINT, (Debug) ? (void (*)())die : SIG_IGN);
! (void) signal(SIGQUIT, (Debug) ? (void (*)())die : SIG_IGN);
#endif /* !ultrix */
(void) signal(SIGCHLD, reapchild);
(void) signal(SIGALRM, domark);
--- 335,342 ----
(void) signal(SIGQUIT, SIG_IGN);
}
#else
! (void) signal(SIGINT, Debug ? die : SIG_IGN);
! (void) signal(SIGQUIT, Debug ? die : SIG_IGN);
#endif /* !ultrix */
(void) signal(SIGCHLD, reapchild);
(void) signal(SIGALRM, domark);