Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | cmake: fix EVP detection with gcc | Aris Adamantiadis | 2015-09-25 | 1 | -2/+2 |
| | |||||
* | crypto: old-fashioned aes_ctr when evp_aes_ctr is missing | Aris Adamantiadis | 2015-09-25 | 1 | -0/+9 |
| | |||||
* | cmake: Fix OpenSSL detection in non-standard path | Andreas Schneider | 2015-07-03 | 1 | -6/+6 |
| | | | | | | This should fix the detection on Windows. Signed-off-by: Andreas Schneider <asn@cryptomilk.org> | ||||
* | cmake: Fail if can't find OpenSSL aes and des headers | Andreas Schneider | 2015-07-03 | 1 | -17/+25 |
| | | | | Signed-off-by: Andreas Schneider <asn@cryptomilk.org> | ||||
* | cmake: Detect network function correctly on Windows | Andreas Schneider | 2015-04-10 | 1 | -11/+17 |
| | | | | Signed-off-by: Andreas Schneider <asn@cryptomilk.org> | ||||
* | cmake: Check for sys/param.h header file | Andreas Schneider | 2015-04-10 | 1 | -0/+1 |
| | | | | Signed-off-by: Andreas Schneider <asn@cryptomilk.org> | ||||
* | cmake: Check for arpa/inet.h header file | Andreas Schneider | 2015-04-10 | 1 | -0/+1 |
| | | | | Signed-off-by: Andreas Schneider <asn@cryptomilk.org> | ||||
* | cmake: Detect __func__ and __FUNCTION__ during configure step | Andreas Schneider | 2015-04-02 | 1 | -0/+15 |
| | | | | Signed-off-by: Andreas Schneider <asn@cryptomilk.org> | ||||
* | buffer: detect compilers not supporting __VA_ARGS__ | Aris Adamantiadis | 2015-02-08 | 1 | -0/+12 |
| | |||||
* | cmake: Fix ntohll and htonll macro detection. | Andreas Schneider | 2015-01-13 | 1 | -2/+2 |
| | | | | | | | | BUG: https://red.libssh.org/issues/164 Thanks to Ryan Schmidt! Signed-off-by: Andreas Schneider <asn@cryptomilk.org> | ||||
* | libcrypto: Fix Windows build with ssh_reseed(). | Andreas Schneider | 2014-12-17 | 1 | -0/+1 |
| | | | | | | | gettimeofday() is not available on Windows and we need it only in case of forking. Signed-off-by: Andreas Schneider <asn@cryptomilk.org> | ||||
* | examples: Add ssh_server_fork example | Audrius Butkevicius | 2014-02-16 | 1 | -0/+1 |
| | | | | | Signed-off-by: Audrius Butkevicius <audrius.butkevicius@gmail.com> Reviewed-by: Andreas Schneider <asn@cryptomilk.org> | ||||
* | cmake: Check for libutil.h on FreeBSD. | Andreas Schneider | 2014-02-14 | 1 | -0/+1 |
| | |||||
* | ConfigureChecks: Stop checking for CMAKE_HAVE_THREADS_LIBRARY. | Raphael Kubo da Costa | 2014-02-03 | 1 | -5/+3 |
| | | | | | | | | | | | libssh is primarily interested in whether pthreads is present and can be used. Checking for CMAKE_HAVE_THREADS_LIBRARY is not the same thing, as there are cases where pthread exists but CMAKE_HAVE_THREADS_LIBRARY is not set (for example, FreeBSD passes -DTHREADS_HAVE_PTHREAD_ARG=1 to CMake by default as a way to skip the checks for -lpthread, -lpthreads and others and tell the build system that -pthread is the one expected to be used). Reviewed-by: Andreas Schneider <asn@cryptomilk.org> | ||||
* | examples: fix forktty() warning on OSX | Aris Adamantiadis | 2013-11-03 | 1 | -0/+1 |
| | |||||
* | cmake: Check for isblank(). | Andreas Schneider | 2013-10-30 | 1 | -0/+1 |
| | |||||
* | cmake: Fix configure check for ntohll and htonll. | Andreas Schneider | 2013-07-27 | 1 | -9/+14 |
| | |||||
* | cmake: Rewrote FindGSSAPI.cmake. | Andreas Schneider | 2013-07-24 | 1 | -2/+2 |
| | |||||
* | cmake: Set HAVE_GETADDRINFO if we have libsocket. | Andreas Schneider | 2013-07-24 | 1 | -1/+2 |
| | | | | This fixes the build on Solaris. | ||||
* | cmake: Check for unistd.h. | Andreas Schneider | 2013-07-23 | 1 | -0/+1 |
| | |||||
* | cmake: If we don't have gssapi libs, disable it. | Andreas Schneider | 2013-07-23 | 1 | -0/+4 |
| | |||||
* | cmake: Check for HAVE_GCC_VOLATILE_MEMORY_PROTECTION. | Andreas Schneider | 2013-07-23 | 1 | -0/+12 |
| | | | | | This ensures that the memset call is not optimized out by the compiler (works works with gcc and clang). | ||||
* | cmake: Define HAVE_NTOHLL and HAVE_HTONLL on Windows. | Andreas Schneider | 2013-07-22 | 1 | -0/+2 |
| | |||||
* | cmake: Make sure we check some functions on all platforms. | Andreas Schneider | 2013-07-22 | 1 | -5/+3 |
| | |||||
* | cmake: Check for _strtoui64() on Windows. | Andreas Schneider | 2013-07-22 | 1 | -0/+2 |
| | |||||
* | cmake: Check if we have Thread Local Storage support. | Andreas Schneider | 2013-07-14 | 1 | -0/+14 |
| | |||||
* | BUG 97: Fix strtoull() detection on serveral platforms. | Andreas Schneider | 2012-12-03 | 1 | -0/+2 |
| | |||||
* | BUG 96: Guard ntohll() and htonll prototypes correctly. | Andreas Schneider | 2012-12-03 | 1 | -0/+1 |
| | |||||
* | BUG 97: Remove obsolete hsterror(). | Andreas Schneider | 2012-12-03 | 1 | -6/+0 |
| | | | | | | This function is pretty much obsolete on most platforms. The standard errno should be used. If it is not enough on Windows we should use WSAGetLastError() in future. | ||||
* | cmake: Add better check to detect -fvisibility=hidden. | Andreas Schneider | 2012-10-14 | 1 | -1/+6 |
| | |||||
* | cmake: Fix building with gcrypt support. | Andreas Schneider | 2012-10-12 | 1 | -6/+9 |
| | |||||
* | MSVC Windows and winsock2.h | Christophe Baribaud | 2012-09-21 | 1 | -2/+2 |
| | | | | | | | | With Microsoft Visual Studio, winsock2.h shall be included before ws2tcpip.h Signed-off-by: Christophe Baribaud <christophe.baribaud@gmail.com> Signed-off-by: Andreas Schneider <asn@cryptomilk.org> | ||||
* | cmake: Disable gcrypt ECC. | Andreas Schneider | 2012-02-04 | 1 | -2/+2 |
| | |||||
* | cmake: Enable ECC support for GCrypt 1.5.0 or newer. | Andreas Schneider | 2012-02-04 | 1 | -1/+5 |
| | |||||
* | cmake: Add a define to see if we have ecc support. | Andreas Schneider | 2012-02-04 | 1 | -0/+3 |
| | |||||
* | cmake: Fix library linking. | Andreas Schneider | 2011-09-23 | 1 | -1/+0 |
| | |||||
* | gzip: Fix zlib support. | Andreas Schneider | 2011-09-18 | 1 | -4/+0 |
| | |||||
* | cmake: Add ec.h and ecdsa.h checks. | Andreas Schneider | 2011-08-30 | 1 | -0/+10 |
| | |||||
* | Check for ecdsa with openssl, added log_warning | Aris Adamantiadis | 2011-06-12 | 1 | -0/+4 |
| | |||||
* | build: Check for ntohll(). | Andreas Schneider | 2011-06-06 | 1 | -0/+1 |
| | | | | This function is available on AIX. | ||||
* | cmake: Remove unused regcomp check. | Andreas Schneider | 2011-05-25 | 1 | -1/+0 |
| | |||||
* | cmake: Fix detection of clock_gettime. | Andreas Schneider | 2011-05-25 | 1 | -8/+5 |
| | |||||
* | Introduced ssh_timeout_elapsed functions | Aris Adamantiadis | 2011-05-24 | 1 | -0/+5 |
| | | | | | | | Functions to mesure elapsed time before and after a serie of calls. Introduces a dependancy to clock_gettime() and librt, hope this doesn't break anything. Porting to gettimeofday() should not be too hard. | ||||
* | cmake: Fixed a typo. | Andreas Schneider | 2011-04-08 | 1 | -1/+2 |
| | |||||
* | examples: Added a event context based sshd example. | milo | 2011-02-20 | 1 | -0/+1 |
| | |||||
* | build: Try to fix the build on Solaris. | Andreas Schneider | 2011-02-13 | 1 | -1/+9 |
| | |||||
* | cmake: Fixed ZLIB configure check. | Andreas Schneider | 2011-01-18 | 1 | -2/+2 |
| | |||||
* | cmake: Fixed a warning on OS/2 if the compiler version is empty. | Andreas Schneider | 2010-12-31 | 1 | -1/+1 |
| | |||||
* | libssh: Don't use the visibility flag on OS/2. | Andreas Schneider | 2010-12-31 | 1 | -2/+2 |
| | |||||
* | server: Replace gethostbyname() with getaddrinfo(). | Andreas Schneider | 2010-12-27 | 1 | -6/+0 |
| | | | | Fixes rlo#13. |