aboutsummaryrefslogtreecommitdiff
path: root/ConfigureChecks.cmake
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2009-11-03 21:04:36 +0100
committerAris Adamantiadis <aris@0xbadc0de.be>2009-11-03 21:04:36 +0100
commit5e002635fcfda365a0f7c0e84cd534c44abaa6a9 (patch)
tree94855644f7e5bee3bb8d05dc777aded1e3a26dd5 /ConfigureChecks.cmake
parente71c28f6a0049617b1bae700524c69c2c8215e09 (diff)
downloadlibssh-5e002635fcfda365a0f7c0e84cd534c44abaa6a9.tar.gz
libssh-5e002635fcfda365a0f7c0e84cd534c44abaa6a9.tar.xz
libssh-5e002635fcfda365a0f7c0e84cd534c44abaa6a9.zip
Fix compilation on freebsd 6.0 which lacks argp.h
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r--ConfigureChecks.cmake1
1 files changed, 1 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index 8ca8258..c2bed2e 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -21,6 +21,7 @@ check_c_compiler_flag("-fvisibility=hidden" WITH_VISIBILITY_HIDDEN)
endif(CMAKE_COMPILER_IS_GNUC)
# 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)
if (WIN32)