diff options
author | Andreas Schneider <asn@cryptomilk.org> | 2011-04-08 11:02:25 +0200 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2011-04-08 11:02:25 +0200 |
commit | 7150cabafa6265ebe7b6d7705b3260462c4810b2 (patch) | |
tree | f82342e38def134275dd79a91721d0329c26ae51 /ConfigureChecks.cmake | |
parent | 29bb718a93969ef429e86f3bb1734d2548846d46 (diff) | |
download | libssh-7150cabafa6265ebe7b6d7705b3260462c4810b2.tar.gz libssh-7150cabafa6265ebe7b6d7705b3260462c4810b2.tar.xz libssh-7150cabafa6265ebe7b6d7705b3260462c4810b2.zip |
cmake: Fixed a typo.
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r-- | ConfigureChecks.cmake | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 28862b22..b476d8ae 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -43,7 +43,8 @@ endif(CMAKE_COMPILER_IS_GNUCC AND NOT MINGW AND NOT OS2) # HEADER FILES check_include_file(argp.h HAVE_ARGP_H) check_include_file(pty.h HAVE_PTY_H) -check_include_file(terminos.h HAVE_TERMIOS_H) +check_include_file(termios.h HAVE_TERMIOS_H) + if (WIN32) check_include_file(wspiapi.h HAVE_WSPIAPI_H) if (NOT HAVE_WSPIAPI_H) |