]> granicus.if.org Git - graphviz/commitdiff
remove fork/vfork detection
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Thu, 1 Jul 2021 00:24:35 +0000 (17:24 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 5 Jul 2021 18:47:30 +0000 (11:47 -0700)
As of the previous commit, nothing uses these configuration variables.

cmake/config_checks.cmake
config-cmake.h.in
configure.ac

index dc7cec3a3faeea91e192aca2ccb591195b921408..36327368c70cb7caeb95ee6424174b7c15007585 100644 (file)
@@ -12,10 +12,8 @@ check_include_file( sys/select.h        HAVE_SYS_SELECT_H       )
 check_include_file( sys/stat.h          HAVE_SYS_STAT_H         )
 check_include_file( sys/time.h          HAVE_SYS_TIME_H         )
 check_include_file( sys/types.h         HAVE_SYS_TYPES_H        )
-check_include_file( sys/vfork.h         HAVE_SYS_VFORK_H        )
 check_include_file( termios.h           HAVE_TERMIOS_H          )
 check_include_file( unistd.h            HAVE_UNISTD_H           )
-check_include_file( vfork.h             HAVE_VFORK_H            )
 check_include_file( X11/Intrinsic.h     HAVE_X11_INTRINSIC_H    )
 check_include_file( X11/Xaw/Text.h      HAVE_X11_XAW_TEXT_H     )
 check_include_file( getopt.h            HAVE_GETOPT_H           )
index 1b73f11d8ac71ace096455da6d9f27ccbde601f6..e0ab0a71c231ce1b35d655690d1fff142316159f 100644 (file)
 #cmakedefine HAVE_SYS_STAT_H
 #cmakedefine HAVE_SYS_TIME_H
 #cmakedefine HAVE_SYS_TYPES_H
-#cmakedefine HAVE_SYS_VFORK_H
 #cmakedefine HAVE_TERMIOS_H
 #cmakedefine HAVE_UNISTD_H
-#cmakedefine HAVE_VFORK_H
 #cmakedefine HAVE_X11_INTRINSIC_H
 #cmakedefine HAVE_X11_XAW_TEXT_H
 #cmakedefine HAVE_GETOPT_H
index f3a96da236816904d50e6c099e938395eb9a90ea..ea4cb1fd2ed7f2de950c91a575f9db41250ebd49 100644 (file)
@@ -442,9 +442,9 @@ dnl Checks for header files
 # AC_HEADER_STDC
 AC_CHECK_HEADERS( \
        fcntl.h search.h stropts.h termios.h \
-       unistd.h strings.h stat.h vfork.h \
+       unistd.h strings.h stat.h \
        sys/time.h sys/types.h sys/select.h sys/socket.h \
-       sys/stat.h sys/mman.h sys/vfork.h \
+       sys/stat.h sys/mman.h \
        sys/ioctl.h sys/inotify.h)
 
 # Internationalization macros
@@ -468,7 +468,7 @@ LIBS=$save_LIBS
 # Checks for library functions
 AC_CHECK_FUNCS([lrand48 drand48 srand48 setmode setenv getenv \
        cbrt getpagesize \
-  ftruncate lseek64 stat64 vfork unlink select])
+  ftruncate lseek64 stat64 unlink select])
 
 AC_REPLACE_FUNCS([strcasestr])