diff options
| author | Aris Adamantiadis <aris@0xbadc0de.be> | 2005-10-25 23:02:25 +0000 |
|---|---|---|
| committer | Aris Adamantiadis <aris@0xbadc0de.be> | 2005-10-25 23:02:25 +0000 |
| commit | d86f0017545f0076a1136b5c6f8b0a7a58366342 (patch) | |
| tree | 6b28fc5766ad23b3c8c9dbb1ffa2bbfae4cbc808 /configure | |
| parent | 5f7c84f900b81e3bbff55378f8170ddf150daf9c (diff) | |
channel_select(). this function rocks !
I adapted the sample.c file. the select_loop function is bloated and fails to demonstrate how libssh is simple to handle...
it looks to run at first try.
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@39 7dcaeef0-15fb-0310-b436-a5af3365683c
Diffstat (limited to 'configure')
| -rwxr-xr-x | configure | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -3852,6 +3852,20 @@ fi done +#Warn user when no openssl available +#FIXME ! how to make it work with gcrypt ? +if test x"$ac_cv_header_openssl_aes_h" != x"yes" || +x"$ac_cv_header_openssl_blowfish_h" != x"yes"; then + echo "Can't find valid openssl files e.g openssl/aes.h" + echo "Please install Openssl-devel" + exit +fi + +if ! test x"$ac_cv_header_zlib_h" = x"yes"; then + echo "Can't find zlib.h" + echo "Compression support won't be compiled in" +fi + # Checks for typedefs, structures, and compiler characteristics. echo "$as_me:$LINENO: checking for an ANSI C-conforming const" >&5 echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6 |
