1997-09-10 06:52:02 +00:00
|
|
|
--- ./Wnn/jserver/de.c.orig Fri Aug 19 10:31:23 1994
|
|
|
|
+++ ./Wnn/jserver/de.c Fri Aug 1 18:54:55 1997
|
|
|
|
@@ -65,6 +65,9 @@
|
|
|
|
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
|
|
|
+#if (defined(__unix__) || defined(unix)) && !defined(USG)
|
|
|
|
+#include <sys/param.h>
|
|
|
|
+#endif
|
|
|
|
#ifdef SYSVR2
|
|
|
|
#include <sys/param.h>
|
|
|
|
#ifndef SIGCHLD
|
|
|
|
@@ -264,7 +267,16 @@
|
1997-02-28 09:24:51 +00:00
|
|
|
fclose(stdin);
|
|
|
|
fclose(stdout);
|
|
|
|
if(!noisy){
|
1997-09-10 06:52:02 +00:00
|
|
|
+#if !(defined(BSD) && (BSD >= 199306)) /* !4.4BSD-Lite by Taoka */
|
1997-02-28 09:24:51 +00:00
|
|
|
fclose(stderr);
|
1997-09-10 06:52:02 +00:00
|
|
|
+#else /* 4.4BSD-Lite */
|
1997-02-28 09:24:51 +00:00
|
|
|
+ int fd = open("/dev/null", O_WRONLY);
|
|
|
|
+ if (fd < 0) {
|
|
|
|
+ xerror("Cannot open /dev/null\n");
|
|
|
|
+ }
|
|
|
|
+ dup2(fd, 2);
|
|
|
|
+ close(fd);
|
1997-09-10 06:52:02 +00:00
|
|
|
+#endif /* 4.4BSD-Lite */
|
1997-02-28 09:24:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(hpux) || defined(SOLARIS)
|