summaryrefslogtreecommitdiff
path: root/dmake
diff options
context:
space:
mode:
authorPetr Mladek <pmladek@suse.cz>2012-02-21 16:36:24 +0100
committerPetr Mladek <pmladek@suse.cz>2012-02-21 16:36:24 +0100
commitda9baeb8c4dad67374b7f9b67de92e1a72d518d0 (patch)
tree776e63dee746b9dc5a6e1b6043bd4076c9e8dddb /dmake
parentbaccf076f4a5a9986ad94f8477996fd44648b6d6 (diff)
Revert incomplete "Cope with more recent cygwin's process.h"
Diffstat (limited to 'dmake')
-rwxr-xr-xdmake/configure.in2
-rw-r--r--dmake/unix/runargv.c3
2 files changed, 1 insertions, 4 deletions
diff --git a/dmake/configure.in b/dmake/configure.in
index d82c889afe63..c196413f9da0 100755
--- a/dmake/configure.in
+++ b/dmake/configure.in
@@ -189,7 +189,7 @@ dnl Initialize libtool
dnl Checks for header files.
AC_HEADER_DIRENT
AC_HEADER_STDC
-AC_CHECK_HEADERS(fcntl.h limits.h strings.h sys/types.h sys/stat.h unistd.h errno.h utime.h spawn.h wait.h sys/wait.h sys/time.h cygwin/process.h)
+AC_CHECK_HEADERS(fcntl.h limits.h strings.h sys/types.h sys/stat.h unistd.h errno.h utime.h spawn.h wait.h sys/wait.h sys/time.h)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
diff --git a/dmake/unix/runargv.c b/dmake/unix/runargv.c
index bd961a7d908b..4e87862125ae 100644
--- a/dmake/unix/runargv.c
+++ b/dmake/unix/runargv.c
@@ -125,9 +125,6 @@ _finished_child(pid, status) [unix/runargv] handles the finished child. If
#endif
#if __CYGWIN__ && ENABLE_SPAWN
-#if HAVE_CYGWIN_PROCESS_H
-# include <cygwin/process.h>
-#else
# include <process.h>
#endif