2e55d1e85e
NX and ssh/sftp plugins. Please note that there are still some issues with these plugins but they should not be tty related. ok ajacoutot@, jasper@ (maintainer) and openpty diff looked at by naddy@
23 lines
932 B
Plaintext
23 lines
932 B
Plaintext
$OpenBSD: patch-CMakeLists_txt,v 1.2 2012/05/22 08:02:36 mpi Exp $
|
|
--- CMakeLists.txt.orig Thu Apr 19 16:20:37 2012
|
|
+++ CMakeLists.txt Thu Apr 19 16:27:53 2012
|
|
@@ -64,15 +64,16 @@ if(CMAKE_COMPILER_IS_GNUCC)
|
|
endif()
|
|
|
|
check_include_files(sys/param.h HAVE_SYS_PARAM_H)
|
|
-check_include_files(sys/socket.h HAVE_SYS_SOCKET_H)
|
|
+check_include_files("sys/types.h;sys/socket.h" HAVE_SYS_SOCKET_H)
|
|
check_include_files(arpa/inet.h HAVE_ARPA_INET_H)
|
|
-check_include_files(netinet/in.h HAVE_NETINET_IN_H)
|
|
+check_include_files("sys/types.h;netinet/in.h" HAVE_NETINET_IN_H)
|
|
check_include_files(termios.h HAVE_TERMIOS_H)
|
|
check_include_files(netdb.h HAVE_NETDB_H)
|
|
check_include_files(fcntl.h HAVE_FCNTL_H)
|
|
check_include_files(unistd.h HAVE_UNISTD_H)
|
|
check_include_files(sys/un.h HAVE_SYS_UN_H)
|
|
check_include_files(errno.h HAVE_ERRNO_H)
|
|
+check_include_files(util.h HAVE_UTIL_H)
|
|
|
|
include_directories(.)
|
|
include_directories(remmina/include)
|