Remove some obsolete configure tests, ancient Unix systems are no

longer supported.
This commit is contained in:
Todd C. Miller
2010-08-10 13:44:05 -04:00
parent 29efdc50ab
commit 8dd8aa000e
13 changed files with 14 additions and 291 deletions

View File

@@ -440,11 +440,7 @@ send_mail(const char *fmt, ...)
default:
/* Parent. */
do {
#ifdef HAVE_WAITPID
rv = waitpid(pid, &status, 0);
#else
rv = wait(&status);
#endif
} while (rv == -1 && errno == EINTR);
return;
}
@@ -565,11 +561,7 @@ send_mail(const char *fmt, ...)
fclose(mail);
do {
#ifdef HAVE_WAITPID
rv = waitpid(pid, &status, 0);
#else
rv = wait(&status);
#endif
} while (rv == -1 && errno == EINTR);
_exit(0);
}