13 lines
589 B
Plaintext
13 lines
589 B
Plaintext
$OpenBSD: patch-ConfigureChecks_cmake,v 1.1 2013/04/24 20:03:39 zhuk Exp $
|
|
--- ConfigureChecks.cmake.orig Sat Jun 2 11:43:13 2012
|
|
+++ ConfigureChecks.cmake Sat Jun 2 11:43:12 2012
|
|
@@ -1,5 +1,5 @@
|
|
include(CheckIncludeFiles)
|
|
|
|
-check_include_files(sys/select.h HAVE_SYS_SELECT_H)
|
|
-check_include_files(sys/socket.h HAVE_SYS_SOCKET_H)
|
|
-check_include_files(sys/types.h HAVE_SYS_TYPES_H)
|
|
+check_include_files("sys/types.h" HAVE_SYS_TYPES_H)
|
|
+check_include_files("sys/types.h;sys/select.h" HAVE_SYS_SELECT_H)
|
|
+check_include_files("sys/types.h;sys/socket.h" HAVE_SYS_SOCKET_H)
|