File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -209,6 +209,7 @@ CHECK_INCLUDE_FILE(sysent.h HAVE_SYSENT_H)
209209CHECK_INCLUDE_FILE (unistd.h HAVE_UNISTD_H )
210210CHECK_INCLUDE_FILE (dirent.h HAVE_DIRENT_H )
211211CHECK_INCLUDE_FILE (stdbool.h HAVE_STDBOOL_H )
212+ CHECK_INCLUDE_FILE (process.h HAVE_PROCESS_H )
212213
213214CHECK_FUNCTION_EXISTS (abs HAVE_ABS )
214215CHECK_FUNCTION_EXISTS (memcpy HAVE_MEMCPY )
Original file line number Diff line number Diff line change 1010#cmakedefine HAVE_UNISTD_H 1
1111#cmakedefine HAVE_DIRENT_H 1
1212#cmakedefine HAVE_STDBOOL_H 1
13+ #cmakedefine HAVE_PROCESS_H 1
1314
1415#cmakedefine HAVE_ABS 1
1516#cmakedefine HAVE_MEMCPY 1
Original file line number Diff line number Diff line change 7979#ifdef HAVE_UNISTD_H
8080# include <unistd.h>
8181#endif
82+ #ifdef HAVE_PROCESS_H
83+ /* process.h defines getpid() function on WIN32 systems */
84+ # include <process.h>
85+ #endif
8286#ifndef HAVE_GETOPT
8387# include "xgetopt.h"
8488#endif
You can’t perform that action at this time.
0 commit comments