mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-01 19:42:48 -05:00
Merge recent misc fixes from 'pre-0.77'.
This commit is contained in:
@ -19,6 +19,7 @@ check_include_file(sys/sysctl.h HAVE_SYS_SYSCTL_H)
|
||||
check_include_file(sys/types.h HAVE_SYS_TYPES_H)
|
||||
check_include_file(glob.h HAVE_GLOB_H)
|
||||
check_include_file(utmp.h HAVE_UTMP_H)
|
||||
check_include_file(utmpx.h HAVE_UTMPX_H)
|
||||
|
||||
check_symbol_exists(futimes "sys/time.h" HAVE_FUTIMES)
|
||||
check_symbol_exists(getaddrinfo "sys/types.h;sys/socket.h;netdb.h"
|
||||
@ -56,6 +57,12 @@ else()
|
||||
set(NO_IPV6 ON)
|
||||
endif()
|
||||
|
||||
if(HAVE_UTMPX_H)
|
||||
set(OMIT_UTMP OFF)
|
||||
else()
|
||||
set(OMIT_UTMP ON)
|
||||
endif()
|
||||
|
||||
include(cmake/gtk.cmake)
|
||||
|
||||
# See if we have X11 available. This requires libX11 itself, and also
|
||||
|
Reference in New Issue
Block a user