Changes between Version 1 and Version 5 of Ticket #64368


Ignore:
Timestamp:
Jan 27, 2022, 5:12:40 AM (2 years ago)
Author:
chrstphrchvz (Christopher Chavez)
Comment:

Adjusted patch: POSIX would say to include <limits.h> for OPEN_MAX (which is also where Tcl actually picks it up from), not <sys/syslimits.h>.

Submitted upstream: https://gitlab.kitware.com/cmake/cmake/-/merge_requests/6909

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #64368

    • Property Cc ryandesign added
  • Ticket #64368 – Description

    v1 v5  
    4141+   related system headers. (Default: 1024) */
    4242+#  define _DARWIN_UNLIMITED_SELECT
    43 +#  include <sys/syslimits.h> /* OPEN_MAX */
     43+#  include <limits.h> /* OPEN_MAX */
    4444+#  define FD_SETSIZE OPEN_MAX
    4545 #endif